【发布时间】:2011-03-19 00:26:31
【问题描述】:
我基本上是在尝试做与此示例相同的事情 - How to match the first word after an expression with regex? - 但在 Yahoo Pipes 中。
我已经在 Yahoo Pipes 中测试了已回答的编码,但它似乎根本没有做任何事情。
【问题讨论】:
标签: regex yahoo-pipes
我基本上是在尝试做与此示例相同的事情 - How to match the first word after an expression with regex? - 但在 Yahoo Pipes 中。
我已经在 Yahoo Pipes 中测试了已回答的编码,但它似乎根本没有做任何事情。
【问题讨论】:
标签: regex yahoo-pipes
Yahoo's documentation 提到支持捕获组。
因此,您可能会使用字符串正则表达式模块,例如将ipsum (\w+) 替换为$1。
【讨论】: