【发布时间】:2016-08-11 04:15:47
【问题描述】:
你好,我想替换这段文字:
test.myfonction(arg1, arg2)
test2.myfonction(arg1, arg2)
test3.myfonction(arg1, arg2)
通过这个:
myfonction2(test, arg1, arg2)
myfonction2(test2, arg1, arg2)
myfonction2(test3, arg1, arg2)
为此,我在 notepad++ 中使用正则表达式来查找 Something.mafonction(arg1, arg2) 我用这个:
(*).myfonction(
但是如何获取 test、test 或 test3 呢?
myfonction2(test
【问题讨论】:
标签: regex windows replace notepad++