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.
我需要更换
removeUnderline(getPlayerName(*));
和
getPlayerNameWM(*);
而 * 是括号之间的东西。
例如,替换removeUnderline(getPlayerName("Daniel"));
removeUnderline(getPlayerName("Daniel"));
和getPlayerNameWM("Daniel");
getPlayerNameWM("Daniel");
寻找 :removeUnderline\(getPlayerName\(([^)]*)\)\);
removeUnderline\(getPlayerName\(([^)]*)\)\);
代替 :getPlayerNameVM\($1\);
getPlayerNameVM\($1\);