Yahoo Pipes 中的正则表达式:删除链接的 Google 前缀部分

发布于 2024-11-03 03:57:32 字数 424 浏览 5 评论 0原文

如何去掉此管道中某些链接的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

逆流 2024-11-10 03:57:32

您需要转义正则表达式中的某些字符;使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文