我试图简单地将字符串转换为小写。
Input: "Ρ Αir"
Output: "ρ αir"
Dim strInput as string = "P Air"
Dim strLower as string = strInput.ToLowerstrLower的结果是上述输出。我尝试将线程的文化设置为en-US,但没有成功,我还尝试使用encoding.getencoding,并尽可能多地使用不同的选项。同样,StrConv也会产生同样的结果。
发布于 2014-03-28 03:47:22
因为你的输入是希腊语。只是看上去像英语。
https://stackoverflow.com/questions/22703781
复制相似问题