如何使用批处理文件删除换行
我想使用批处理文件删除文本文件中的换行符。 是否可以做。 请提供一些帮助
I want to delete Linefeed in text file using batch file.
Is it possible to do.
Please provide some help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是从文本文件中删除空行,请在批处理文件中尝试此操作:
您可能还想将 inputfile.txt 和 outputfile.txt 替换为 %1< /strong> 和 %2 用于任何将其名称指定给批处理文件的文件
If you mean removing empty lines from text files try this in a batch file:
you may also want to replace inputfile.txt and outputfile.txt by %1 and %2 to be used for any file given its name to the batch file