How do I split Tamil characters in a string?
When I use preg_match_all('/./u', $str, $results),
I get the characters "த", "ம", "ி", "ழ" and "்".
How do I get the combined characters "த", "மி" and "ழ்"?
|
How do I split Tamil characters in a string? When I use How do I get the combined characters "த", "மி" and "ழ்"? | ||||
|
feedback
|
|
I think you should be able to use the Alternatively, if you prefer the regex approach, I think you can use this:
where (Disclaimer: I have not tested either of these approaches.) | |||||||||||||
feedback
|