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.
我应该使用什么替换命令,以便/用 vi 在文本文件中用字符串“abc”替换每个出现的字符?
/
:1,$ s/?/abc
我应该用什么代替?上面的代码片段?
?
您可以将按照惯例的替换分隔符更改为/其他内容,然后您根本不必转义正斜杠 -
:%s;/;abc;g :%s~/~abc~g :%s!/!abc!g :1,$s?/?abc?g :%s/\//abc/g :1,$sub;/;abc;g
这些都在每一行上进行相同的/替换。abc
abc
答案是:%s/\//abc/g我认为。
:%s/\//abc/g