How to join the Urdu alphabet in C #

I am developing an urdu based application using C #. I did with segmentation, now the problem is that after segmentation I got the letters of the Urdu language, someone gave me an idea how to join them to make words from letters, for example

  • ب ڑ ی = بڑی

  • ب ا ت = بات

+4
source share
1 answer

You just have to combine the letters into words. Just make sure there are no spaces and the letters should connect correctly automatically.

 string a = "ب";
 string b = "ڑ";
 string c = "ی";
 textBox1.Text = a + b + c;

produces:

enter image description here

+3
source

Source: https://habr.com/ru/post/1539121/


All Articles