How can I split a String by Unicode range in Ruby. I wanted to split under \u1000 and over \u1000 with comma. For example, I wanted to split this string...
I love ျမန္မာ
to this...
I love, ျမန္မာ
You may not see the Unicode Characters in my example. It's Unicode range \u1000 and over.
Thanks.