C#正则函数用法实例【匹配、替换、提取】
程序员文章站
2022-09-04 09:51:18
本文实例讲述了c#正则函数用法。分享给大家供大家参考,具体如下:
system.text.regularexpressions 命名空间包含一些类,这些类提供对 .net...
本文实例讲述了c#正则函数用法。分享给大家供大家参考,具体如下:
system.text.regularexpressions 命名空间包含一些类,这些类提供对 .net framework 正则表达式引擎的访问。该命名空间提供正则表达式功能,可以从运行在 microsoft .net framework 内的任何平台或语言中使用该功能。
1 正则表达式的常见使用
① 格式匹配
/// <summary> /// 邮箱格式验证 /// </summary> /// <returns></returns> public static string checkmail(string stremail) { string result = ""; regex regex = new regex(@"[a-za-z0-9._%-]+@[a-za-z0-9.-]+\.[a-za-z]{2,4}"); match match = regex.match(stremail); if(match.success) { result = stremail; } else { result = "无效邮箱"; } return result; }
② 替换匹配内容
/// <summary> /// 转换日期格式(yyyy-mm-dd 转 yyyy年mm月dd日) /// </summary> /// <param name="strdate"></param> /// <returns></returns> public static string transdate(string strdate) { string result = ""; regex regex = new regex(@"(\d+)-(\d+)-(\d+)"); if(regex.ismatch(strdate)) { result = regex.replace(strdate,"$1年$2月$3日"); } return result; }
③ 提取匹配内容
/// <summary> /// 正则表达式提取和替换内容 /// </summary> public static string contentextract() { string result = ""; string str = "大家好! <user entrytime='2010-10-7' email='zhangsan@163.com'>张三</user> 自我介绍。"; regex regex = new regex(@"<user\s*entrytime='(?<time>[\s\s]*?)'\s+email='(?<email>[\s\s]*?)'>(?<username>[\s\s]*?)</user>", regexoptions.ignorecase); match match = regex.match(str); if(match.success) { string username = match.groups["username"].value; //获取用户名 string time = match.groups["time"].value; //获取入职时间 string email = match.groups["email"].value; //获取邮箱地址 string strformat = string.format("我是:{0},入职时间:{1},邮箱:{2}", username, time, email); result = regex.replace(str, strformat); //替换内容 console.writeline(result); } return result; //结果:大家好!我是张三,入职时间:2010-10-7,邮箱:zhangsan@163.com 自我介绍。 }
2 我的一个实例
/// <summary> /// 从xml中提取匹配的字段 /// </summary> /// <param name="args"></param> static void main(string[] args) { string strxml = getstrxml(); //创建用户信息xml regex userregex = new regex(@"<user\s*entrytime='(?<time>[\s\s]*?)'\s+email='(?<email>[\s\s]*?)'>(?<username>[\s\s]*?)</user>", regexoptions.ignorecase); matchcollection usermatchcoll = userregex.matches(strxml); if (usermatchcoll.count > 0) { foreach (match matchitem in usermatchcoll) { string username = matchitem.groups["username"].value; //获取用户名 string time = transdate(matchitem.groups["time"].value); //获取入职时间,并转换日期格式 string email = checkmail(matchitem.groups["email"].value); //获取邮箱地址,并检测邮箱格式 string strformat = string.format("姓名:{0},入职时间:{1},邮箱:{2}", username, time, email); console.writeline(strformat); } } console.readline(); } /// <summary> /// 创建用户信息xml /// </summary> /// <returns></returns> public static string getstrxml() { stringbuilder strxml = new stringbuilder(); strxml.append("<userinfo>"); strxml.append("<user entrytime='2010-10-7' email='zhangsan@163.com'>张三</user>"); strxml.append("<user entrytime='2012-5-15' email='lisi163.com'>李四</user>"); strxml.append("<user entrytime='2012-6-13' email='wangwu@qq.com'>王五</user>"); strxml.append("</userinfo>"); return strxml.tostring(); }
ps:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:
javascript正则表达式在线测试工具:
正则表达式在线生成工具:
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#正则表达式用法总结》、《c#编码操作技巧总结》、《c#中xml文件操作技巧汇总》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》、《c#面向对象程序设计入门教程》及《c#程序设计之线程使用技巧总结》
希望本文所述对大家c#程序设计有所帮助。
上一篇: 你有多少颗牙齿?它与寿命有关
下一篇: 教你区分虚火与实火