Search code examples
c#urdu

How to join Urdu alphabets in c#


i am developing an urdu based application using c#. i have done with segmentation now problem is after segmentation i got letters of Urdu language any one give me idea how to join them to make words from letters like

  • ب ڑ ی = بڑی

  • ب ا ت = بات


Solution

  • You should simply be able to concatenate letters into words. Just make sure there is no whitespace and the letters should join together properly automatically.

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

    produces :

    enter image description here