Is there any optimal way to implement character count for indic language like Hindi Tamil For example, if we take the word "Mother" in English, it is a 6 letter word. But if you type the same word(माता) in Hindi, it is a two letter word(मा + ता) but the length of character become 4.is there any way to count the number of real characters?
माता -> actual -> 4, Expected-> 2
जगदीश -> actual ->5 , Expected -> 4
क्रमश -> actual -> 5, expected -> 3
Any help on this would be greatly appreciated...