首页 > 代码库 > C#常用的正则工具类写法
C#常用的正则工具类写法
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Collections; namespace ConsoleApplication1 { /// <summary> /// 字符串正则匹配帮助类 /// </summary> public static class RegexHelp { /// <summary> /// 返回单个正则匹配值 /// </summary> /// <param name="value">字符串</param> /// <param name="regex">正则表达式字符串</param> /// <returns>字符串类型</returns> public static string ToRegexString(this string value, string regex) { if (value != null) { Regex re = new Regex(regex); Match m = re.Match(value); if (m.Success) { return m.Value; } else { return null; } } else { return null; } } /// <summary> /// 返回正则匹配字符串数组 /// </summary> /// <param name="value">字符串</param> /// <param name="regex">正刚表达式</param> /// <returns>字符串数组</returns> public static String[] ToRegexStringArray(this string value, string regex) { String[] array = { }; if (value != null) { //兼容多行匹配模式 Regex rg = new Regex(regex, RegexOptions.Multiline); MatchCollection mc = rg.Matches(value); if (mc.Count > 0) { int group = mc.Count; array = new String[group]; for (int i = 0; i < group; i++) { array[i] = mc[i].Value; } } } return array; } /// <summary> /// 判断是否匹配 /// </summary> /// <param name="value">字符串</param> /// <param name="regex">正则表达式</param> /// <returns>bool</returns> public static bool IsRegex(this string value, string regex) { if (value != null) { Regex reg = new Regex(regex); return reg.IsMatch(value); } else { return false; } } } }
C#常用的正则工具类写法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。