我想用Yahoo Pipes在RSS提要中抓取图像的src。
这个Regex正是在选择我想要的。
src="([^"]*)"
图片:<img src="image.jpg" width="300" height="422" alt="urkunde300" style="margin-right: 10px;" />
管道:在scrapedimage
中,用$1
替换src="([^"]*)"
输出:<img//// width="300" height="422" alt="image300" style="margin-right:10px;"/>
如何反转Match以便用"nothing"替换除image.jpg
之外的所有内容
您想要匹配整行(<img src="([^"]+)".*
),并用正则表达式($1
)中的指定组替换它