在雅虎管道中使用正则表达式提取
我正在尝试使用雅虎管道并删除“文章”中直到页面末尾的所有内容。 如果我使用 Regex exp Article.+ 我可以提取所有内容,直到行尾,直到“2011
" . But I need to extract till the end of the page which is till "url.replace" What am I doing wrong. I am using http://gskinner.com/RegExr/ which is awesome这是页面部分的样子 本文由 Brown 审阅 最后更新时间: 2011 年 10 月 2 日
'; _url = _url.replace
谢谢 希尔
I am trying to use Yahoo pipes and remove everything from "Article" till the end of the page.
If I use Regex exp Article.+ I can extract everything till the end of line which is till "2011
" . But I need to extract till the end of the page which is till "url.replace"
What am I doing wrong. I am using http://gskinner.com/RegExr/ which is awesome
Here is what the section of the page looks like
This Article was reviewed by Brown Last updated on: Oct 2, 2011
'; _url = _url.replace
Thanks
Hil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我明白了:
查询字符串是:
Article.+
这将提取到行尾
如果想提取到页面末尾,请使用 Yahoo Pipes 中的 S 复选框
I think I got it:
query string is:
Article.+
this will extract till end of line
If one wants to extract till end of page use the S checkbox in Yahoo Pipes