这是我的管道:链接
我需要获取内容中img标记的src属性:编码的
这是内容:编码的饲料:
<p style="text-align:justify;"><img class="alignnone size-full wp-image-49549" src="http://i2.wp.com/heshootshescoores.com/wp-content/uploads/2014/08/nhl.jpg?resize=600%2C400" alt="nhl"/></p>
<p style="text-align:justify;">...etc.
因此,在这个例子中,我想提取这个链接:ttp://i2.wp.com/heshootshescoores.com/wp-content/uploads/2014/08/nhl.jpg?resize=600%2C400
并将此属性导出到一个新项目。media:类似的缩略图
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/"
url="HERE GOES THE SRC ATTRIBUTE.png"/>
有可能和雅虎合作吗!管道?(我在想regex,但我不熟悉,甚至不知道从哪里开始。)
谢谢
FU问题:https://stackoverflow.com/questions/25605740/add-items-attribute-in-yahoo-pipes
(.*?)(?=src=)src="(.*?)"(.*)
这会奏效的。
请参阅演示。
http://regex101.com/r/bJ6rZ5/3