【发布时间】:2014-02-28 14:06:59
【问题描述】:
我想在表单中拆分字符串(删除()的contain)
eye of vichy, the (l'oeil de vichy)
到
eye of vichy, the
我需要使用正则表达式运算符“替换”。
【问题讨论】:
-
向我们展示您的尝试。
标签: rapidminer
我想在表单中拆分字符串(删除()的contain)
eye of vichy, the (l'oeil de vichy)
到
eye of vichy, the
我需要使用正则表达式运算符“替换”。
【问题讨论】:
标签: rapidminer
使用Replace 运算符,将replace what 参数设置为(.*)\(.*\)(.*),并将replace by 参数设置为$1$2。
【讨论】: