Suppose i have a bangla string like "সাজানো". I need to split that into "সা" "জা" "নো". I have tried the ToCharArray() method but yes it splits the following string into 'স','া','জ','া','ন', 'ো'.
So the problem is that i want to split a string to another string array with combined/dependent characters together.Like "সা" should be separated from "সাজানো", not in individual char like 'স'and 'া'.