当前位置: 编程技术>其它
正则表达式匹配中文与双字节的代码
来源: 互联网 发布时间:2014-10-16
本文导语: 匹配中文字符 [u4e00-u9fa5] C# 代码如下: class Class1 { static void Main() { string s = "中文 chinese"; Regex regx = new Regex("[u4e00-u9fa5]+"); Match m = regx.Match(s); Console.WriteLine(m.Groups[0].Value); // 中文 Console.ReadKey(); } } 匹配双字节字符(包括汉字) [^x00-...
匹配中文字符
[u4e00-u9fa5]
C#
class Class1
{
static void Main()
{
string s = "中文 chinese";
Regex regx = new Regex("[u4e00-u9fa5]+");
Match m = regx.Match(s);
Console.WriteLine(m.Groups[0].Value); // 中文
Console.ReadKey();
}
}
匹配双字节字符(包括汉字)
[^x00-xff]
[u4e00-u9fa5]
C#
代码如下:
class Class1
{
static void Main()
{
string s = "中文 chinese";
Regex regx = new Regex("[u4e00-u9fa5]+");
Match m = regx.Match(s);
Console.WriteLine(m.Groups[0].Value); // 中文
Console.ReadKey();
}
}
匹配双字节字符(包括汉字)
[^x00-xff]