正则使用的几种形态

前端之家收集整理的这篇文章主要介绍了正则使用的几种形态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、判断是否匹配

Regex re = new Regex("\\\\u[0123456789abcdef]{4}",RegexOptions.IgnoreCase);

re.IsMatch(InputStr);

2、使用Match判断匹配并取匹配的值

string strReg = @"((product_list).+?\})";//short开始的提取出来
Regex re = new Regex(strReg,RegexOptions.IgnoreCase);
if (re.Match(inputStr).Success)

{

sb.Append(re.Match(inputStr).Value);//获取匹配的值

}

3、匹配多组,循环匹配的组

string strReg = @"((product_list).+?\})";

Regex re = new Regex(strReg,RegexOptions.IgnoreCase); string res; MatchCollection mc = re.Matches(inputStr); foreach (Match ma in mc) { string aa = ma.Value; if (aa.Contains("DNH")) { str2=System.Text.RegularExpressions.Regex.Split(aa,","); res = str2[1]; } }

原文链接:https://www.f2er.com/regex/359066.html

猜你在找的正则表达式相关文章