Yahoo Pipes 中的正则表达式:删除链接的 Google 前缀部分
如何去掉此管道中某些链接的 Google 前缀?
http://pipes.yahoo.com/followtheboat/feedburner
我正在尝试删除 ' http://www.google.com/url?sa=X&q=' 在一些链接中,所以我尝试了正则表达式规则:
在 item.link 中替换 http://www.google.com/url?sa=X&q= with [blank]
其中 [blank] 是文本字段留空的位置。这是行不通的。
How do I get rid of the Google prefix to some of my links in this pipe?
http://pipes.yahoo.com/followtheboat/feedburner
I'm trying to strip out 'http://www.google.com/url?sa=X&q=' in some of the links, so I've tried the Regex rule:
In item.link replace http://www.google.com/url?sa=X&q= with [blank]
Where [blank] is where the text field is left empty. This doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要转义正则表达式中的某些字符;使用
http://www\.google\.com/url\?sa=X\&q=
代替。You need to escape the some of the characters in the regex; use
http://www\.google\.com/url\?sa=X\&q=
instead.