在c#中的字符串中提取html img标记

时间:2014-10-20 10:43:42

标签: regex string c#-4.0

我有一个html代码作为字符串。我需要删除具有特定src属性的img标记。

e.g。 <img style="WIDTH:439px;" src="http://test/a.png">

说我需要找到具有“test”src属性的img标签,并从字符串中删除整个img标签。

提前致谢

1 个答案:

答案 0 :(得分:2)

<img\s(?=.*?\btest\b)[^>]*>

试试这个。看看演示。

http://regex101.com/r/wQ1oW3/31