摘要: string carNumber = "我的车冀R445541是多少"; MatchCollection mcCarNumber = Regex.Matches(carNumber, @"([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领]{1}[A-Z]{1}[A-Z0-9]{ 阅读全文
posted @ 2021-10-08 17:49 星星c# 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 思路:如果号码是18位的,并且符合生日规则,还有前面和后面都不是数字的这种才是身份证号,避免误采 string idCard = " 135412198801245521af888888888888888888,110444199601012145"; idCard = " " + idCard + 阅读全文
posted @ 2021-10-08 17:44 星星c# 阅读(629) 评论(0) 推荐(0) 编辑
摘要: 提取邮箱数据的代码记录: string source = "1afdsa邮箱为:123@163.com 中国aa@bb.com.cna1中国人民"; string regex = @"[a-zA-Z0-9\.\-_]+@[a-zA-Z0-9\-_]+[a-zA-Z0-9\.]+[a-zA-Z0-9\ 阅读全文
posted @ 2021-10-08 17:34 星星c# 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 支持提取:13255544444或 136 7789 9654格式的手机号 using System; using System.Collections.Generic; using System.Text.RegularExpressions; namespace ConsoleApp4 { cl 阅读全文
posted @ 2021-10-08 17:13 星星c# 阅读(730) 评论(0) 推荐(0) 编辑