正则表达式匹配中文与双字节的代码
程序员文章站
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]
[\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]
上一篇: MongoDB 复制(副本集)学习笔记
下一篇: SSL_1637【苹果】