Unity3D : 判斷字符串是否含有中文(C#) ... 判斷當前字符是否爲中文 public bool isChinese(char c) { return c >= 0x4E00 && c<= 0x9FA5; } ...
確定! 回上一頁