asp.net 过滤所有html标签正则表达式

作者:袖梨 2022-06-25

asp教程.net 过滤所有html标签正则表达式
//下面提供二种asp.net教程 过滤所有html标签正则表达式,都是过滤所有html代码,用的是replace替换。

regex reg = new regex(@"(?is)]*>(.*?)");
matchcollection mc = reg.matches("");
foreach (match m in mc)
{
  str+= m.groups教程[1].value + "n";
}

//方法二

regex re = new regex(@"[wd]+(?=[ matchcollection mc = re.matches("text");
foreach (match ma in mc)
{
}

相关文章

精彩推荐