首页 > 系统服务 > 详细

VIM 使用 匹配替换命令配合表达式 实现 递增替换

时间:2017-10-06 19:30:54      阅读:340      评论:0      收藏:0      [点我收藏+]

:let n=100 | g/while/s/\d/\=n / | let n=n+1

before

10 void *thread_function_1(void *arg) {
 11         int i;
 12         while(1)
 13         {
 14                 printf("Thread 1 says hi!\n");
 15                 g_counter += 1;
 16                 sleep(1);
 17         }
 18         return NULL;
 19 }
 20 
 21 void *thread_function_2(void *arg) {
 22         int i;
 23 
 24         while(1)
 25         {
 26                 printf("Thread 2 says hi!\n");
 27                 g_counter += 2;
 28                 sleep(1);
 29         }
 30         return NULL;
 31 }
 32 
 33 void *thread_function_3(void *arg) {
 34         int i;
 35 
 36         while(1)
 37         {
 38                 printf("Thread 3 says hi!\n");
 39                 g_counter += 2;
 40                 sleep(1);
 41         }
 42         return NULL;

 

after:

 

10 void *thread_function_1(void *arg) {
 11         int i;
 12         while(1)
 13         {
 14                 printf("Thread 1 says hi!\n");
 15                 g_counter += 1;
 16                 sleep(1);
 17         }
 18         return NULL;
 19 }
 20 
 21 void *thread_function_2(void *arg) {
 22         int i;
 23 
 24         while(1)
 25         {
 26                 printf("Thread 2 says hi!\n");
 27                 g_counter += 2;
 28                 sleep(1);
 29         }
 30         return NULL;
 31 }
 32 
 33 void *thread_function_3(void *arg) {
 34         int i;
 35 
 36         while(1)
 37         {
 38                 printf("Thread 3 says hi!\n");
 39                 g_counter += 2;
 40                 sleep(1);
 41         }
 42         return NULL;

 

VIM 使用 匹配替换命令配合表达式 实现 递增替换

原文:http://www.cnblogs.com/shaivas/p/7632021.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!