如何在vi中替换NUL?
我的文本文件中有一个 NUL 字符。 (如果我在该字符上执行“ga”,则会打印 NUL。)如何用其他字符替换该字符?
我在 Windows 上使用 GVIM。
I have a NUL character in my text file. (If I do 'ga' on that character it prints NUL.) How do I replace this character with something else?
I am using GVIM on Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
:%s/[\x0]//g
http:// vim.1045645.n5.nabble.com/search-for-null-td1194026.html
:%s/[\x0]//g
http://vim.1045645.n5.nabble.com/search-for-null-td1194026.html
:s/\x0//g
应该可以完成这项工作。:s/\x0//g
should do the work.