标签: regex string c#-4.0
我有一个html代码作为字符串。我需要删除具有特定src属性的img标记。
e.g。 <img style="WIDTH:439px;" src="http://test/a.png">
<img style="WIDTH:439px;" src="http://test/a.png">
说我需要找到具有“test”src属性的img标签,并从字符串中删除整个img标签。
提前致谢
答案 0 :(得分:2)
<img\s(?=.*?\btest\b)[^>]*>
试试这个。看看演示。
http://regex101.com/r/wQ1oW3/31