我需要HTML注释的正则表达式,其中包含任何单词

时间:2014-07-15 13:01:39

标签: c# regex

我想从我的页面中删除HTML评论,下面是评论的格式

<!-- saved from url=(0116)file://D:\Documents and Settings\213039755\Local Settings\Temporary Internet Files\OLK5\abc.htm -->

我希望正则表达式包含“已保存”字样的HTML注释。

目前我正在使用

Regex.Replace(content, "(?<=\\<!--\\s*save\\s*-->)", "sss");

1 个答案:

答案 0 :(得分:2)

这应该这样做:

String result = Regex.Replace(content, @"<!-- saved[^>]*>", String.Empty);