码迷,mamicode.com
首页 > 系统相关 > 详细

Replace using VIM, reuse part of the search pattern

时间:2018-02-07 20:00:19      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:post   pre   sea   参考   ace   字符   注意   ons   .com   

参考: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

标签:post   pre   sea   参考   ace   字符   注意   ons   .com   

原文地址:https://www.cnblogs.com/brainstorm/p/8427295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!