永发信息网

vim在特定字符前插入

答案:2  悬赏:0  手机版
解决时间 2021-02-14 15:51
  • 提问者网友:我的未来我做主
  • 2021-02-13 17:00
比如012301230123,在所有0前面插入字母a,使之变成a0123a0123a0123,用正则应该怎么写?
最佳答案
  • 五星知识达人网友:荒野風
  • 2021-02-13 18:37
Esc 退出编辑模式,按英文冒号: 并输入
%s/0/a0/g
回车
全部回答
  • 1楼网友:天凉才是好个秋
  • 2021-02-13 18:46
:%s/^123$/this garbled code.\r&/g "&" 代表匹配到的字符串.在不知道 "123" 这个确切字符串时无需再打一边,只要写得出 pattern 就可以. 请看手册: search and replace when replacing: \r is newline, \n is a null byte (0x00). \& is ampersand (& is the text that matches the search pattern). \0 inserts the text matched by the entire pattern \1 inserts the text of the first backreference. \2 inserts the second backreference, and so on. 2木成林 问得 block 前后插入, vim 里没有试验过,不过好像 sed 应该更适合作这个...
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯