//判斷輸入是否為中文 public static bool HasChinese(string content) { //判斷是不是中文 string regexstr = @"[\u4e00-\u9fa5]"; if (Regex.IsMatch(content, regexstr)) { Log("HasChinese"); return true; } else { Log("Has Not Chinese"); return false; } } //判斷是不是數字 public static bool isInterger(string str) { if (str == "") { return false; } else { foreach (char c in str) { if (char.IsNumber(c)) { continue; } else { return false; } } } return true; } //只允許數字或字母的判斷 public static bool isIntergerOrLetter(string content) { System.Text.RegularExpressions.Regex reg1 = new System.Text.RegularExpressions.Regex(@"^[A-Za-z0-9]+$"); return reg1.IsMatch(content); }