Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 c# 开发一个基于 urdu 的应用程序。我已经完成了分割现在的问题是在分割之后我得到了乌尔都语的字母任何人告诉我如何加入它们来用字母组成单词
ب ڑ ی = بڑی
ب ات = بات
您应该能够简单地将字母连接成单词。只要确保没有空格并且字母应该自动正确连接在一起。
string a = "ب"; string b = "ڑ"; string c = "ی"; textBox1.Text = a + b + c;
产生: