欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

正则表达式匹配中文与双字节的代码

程序员文章站 2022-06-22 14:45:11
匹配中文字符 [\u4e00-\u9fa5] c# 复制代码 代码如下: class class1 { static void main() { string s = "中...
匹配中文字符
[\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]