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.
所以,所以我在一些文件中有这个:
ABCxxx.yyyDEF
我想把它改成:
HELLOxxx.yyyWORLD
有没有办法做到这一点?/ 如何?
我在玩通配符,例如
:%s/ABC.*DEF/HELLO.*WORLD/g
但是,被替换的 HELLO_WORLD 中的 .* 不会保存被替换的 .* 字符。它只是作为你好。*世界
帮助赞赏,
帕春
s/ABC\(xxx.yyy\)WORD/JJJ\1MOO/
\(\) 中的任何内容都将被记住并可以在替换字符串中使用。
请参阅: vim 正则表达式反向引用