vi 编辑器:如何用 tab-space-tab 替换多个选项卡
我有一个文本文件,其中连续有两个选项卡。我需要在这两个制表符之间插入一个空格。
我正在研究 vi 编辑器。谁能告诉我该怎么做。
I have a text file which has two TABS consecutively. I need to insert a SPACE between those two TABS.
I am working on vi editor. Can anyone tell me how to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
您想在每行上执行多次替换吗?
Use :
Do you want to perform multiple substitution on each line?
要将 \t\t 的所有实例全局替换为 \t \t
:g/\t\t/s//\t \t/g
或替换每行的第一个实例:
:g/\t\t/ s//\t \t
To globally replace all instances of \t\t with \t \t
:g/\t\t/s//\t \t/g
or to replace the first instance on every line:
:g/\t\t/s//\t \t