c#如何判断字符串是否含中文

  static bool ContainChinese(string input)
    {
        string pattern = "[u4e00-u9fbb]";
        return Regex.IsMatch(input, pattern);
    }

 

你可能感兴趣的