正则表达式/雅虎管道 - 匹配表达式后的第一个单词
我基本上试图做与此示例相同的事情 - 如何使用正则表达式匹配表达式后的第一个单词? - 但在雅虎管道内。
我已经测试了雅虎管道中编码的答案,但它似乎根本没有做任何事情。
I'm basically trying to do the same thing as in this example - How to match the first word after an expression with regex? - but within Yahoo Pipes.
I've tested the answered coded in Yahoo Pipes but it doesn't seem to be do anything at all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Yahoo 文档提到支持捕获组。
因此,您可能会使用 String Regex 模块将
ipsum (\w+)
替换为$1
。Yahoo's documentation mentions capture groups are supported.
So you could likely use the String Regex module to e.g. replace
ipsum (\w+)
with$1
.