Php - How to split tamil characters, Php - split tamil characters

How to split tamil characters

How to Split tamil character string in php

Tamil characters are stored in database or fetched in unicode format. Characters can be splitted using preg_match_all function in php.
 # preg_match_all('/pLpM*|./u', $str, $results)

where,
pL - Match Unicode letter
pM - Match Unicode mark
$str - Input string to be seperated
$result - Result of input passed.

This can also be used to split characters of other unicode characters or letters.

The topic on Php - How to split tamil characters is posted by - Math

Hope you have enjoyed, Php - How to split tamil charactersThanks for your time

Tech Bluff