使用正则表达式

时间:2015-05-21 17:32:49

标签: regex

以下面的代码为例

<a style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" href="http://3.bp.blogspot.com/xxxxxxx.JPG"><img src="xxxxxxxxxxxxxx" alt="" width="200" height="150" border="0" /></a>

如何创建正则表达式以从img标记中删除包含域'blogspot.com'的任何链接标记?

最后我想要这个

<img src="xxxxxxxxxxxxxx" alt="" width="200" height="150" border="0" />

提前致谢。

1 个答案:

答案 0 :(得分:0)

首先,我建议你阅读this。如果你还想要正则表达式..

您可以使用以下内容进行匹配:

<[^>]*?href\s*=\s*"[^>]*?blogspot\.com[^>]*>(<img[^>]*?\/>)<\/[^>]*>

$1

替换或提取

请参阅DEMO