Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Eclipse 中查找和替换该短语
doSomething(*,和
doSomething(*,
doSomething(*)
(其中 * 是通配符)
我试过 ctrl+f 和 ctrl+h。当我使用通配符时,它会找到该短语,但是当它被替换时,它将被逐字替换为星号,而不是其中的短语。有没有办法这样做(也许用正则表达式?)。如果eclipse中没有办法,有什么软件可以吗?
ctrl-f并检查了Regular expressions选项,
ctrl-f
Regular expressions
寻找:(doSomething\([^,]*),
(doSomething\([^,]*),
用。。。来代替:\1)
\1)
当您点击 时,您需要启用该Regular expressions复选框CTRL + F。
CTRL + F
Find: (doSomething\([^,]+), Replace: $1)
在替换中使用$n,其中 n 是n捕获组的第 th 次出现( )
$n
n
( )