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 "ழ்"?

link|improve this question
feedback

1 Answer

I think you should be able to use the grapheme_extract function to iterate over the combined characters (which are technically called "grapheme clusters").

Alternatively, if you prefer the regex approach, I think you can use this:

preg_match_all('/\pL\pM*|./u', $str, $results)

where \pL means a Unicode "letter", and \pM means a Unicode "mark".

(Disclaimer: I have not tested either of these approaches.)

link|improve this answer
I tested that and it does match the characters correctly. – Danack57 Jan 10 at 4:30
@Danack57: Cool, thank you very much. :-) – ruakh Jan 10 at 4:32
thank you. It works well. – priyacst Jan 10 at 14:52
@priyacst: You're welcome! – ruakh Jan 10 at 14:56
4  
Please accept this answer if it helped you solve your problem. That will provide a clear indication that this question has been answered satisfactorily, provides future visitors an indicator about which answer worked (if any), and gives a little extra reputation to the one with the answer as an incentive to continue answering questions. Thanks! – sarnold Jan 14 at 3:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.