将文本文件中的两个或多个空格替换为 ;
File1:
hello world
foo bar
a word with a space
我需要用分号(;)替换长度为两个或更多的所有空格。
结果:
文件2:
hello;world
foo;bar
a;word with a space
File1:
hello world
foo bar
a word with a space
I need to replace all white spaces which are two or more in length with a semi-colon(;).
Result:
File2:
hello;world
foo;bar
a;word with a space
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试:
Try: