常用正则表达式

Posted Ace007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用正则表达式相关的知识,希望对你有一定的参考价值。

1.img标签

//<img开头,中间不包含<或>,空格后src以‘或"开始.....

Regex reg = new Regex("<img[^<>]*\\ssrc=([‘\"]+[^<>‘\"]+[‘\"]+)[^<>]*>", RegexOptions.IgnoreCase);
MatchCollection mc = reg.Matches(html);

foreach (Match m in mc)
{
var src= m.Groups[1].Value;

}

2.textarea标签内容

string text = "<textarea id=‘ta1‘ .*>111</textarea>";// this.txt_RplayContenet.Text;

Regex reg = new Regex("<textarea id=‘(.+)‘ .*>(.*)</textarea>", RegexOptions.IgnoreCase);
var match=reg.Match(text);
if (match.Success)
{
var id = match.Groups[1].Value; //ta  //括号分组,默认正则匹配到的字符串是group[0],第一个括号group[1],第二个括号group[2]
var content = match.Groups[2].Value; //111
}

以上是关于常用正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

markdown [常用正则表达式]常用正则表达式总结#regex

HIVE常用正则表达式

day19——常用正则表达式re正则对象和正则匹配效率比较编译正则对象

Django中常用的正则表达式

常用正则表达式

常用模块--- 正则模块 正则表达式 re 模块