Replace using VIM, reuse part of the search pattern

Posted 头脑风暴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Replace using VIM, reuse part of the search pattern相关的知识,希望对你有一定的参考价值。

参考:https://unix.stackexchange.com/questions/35206/replace-using-vim-reuse-part-of-the-search-pattern

 

 

\0 is the whole match. To use only part of it you need to set it like this and use \1

.s/(\([0-9]*\))/{\1}/

 

 

比如想把  文件里   test_12 test_2323  

等test_后面带数字的字符串,后面加一个x

变成test_12x   test_2323x

 

%s/\(test_\d\+\)/\0x/g

 

注意这里括号和+号都要加转义

 

以上是关于Replace using VIM, reuse part of the search pattern的主要内容,如果未能解决你的问题,请参考以下文章

解决Deprecated: preg_replace(): The /e modifier is deprecated, use

sublime text 替换功能使用反向引用 replace with using

Use Vim as a Python IDE

Using IntelliJ IDEA as the Vim Editor

This MySqlConnection is already in use

为什么还在使用 Vim?