如何使用批处理文件删除换行

发布于 2024-09-07 08:17:18 字数 43 浏览 4 评论 0原文

我想使用批处理文件删除文本文件中的换行符。 是否可以做。 请提供一些帮助

I want to delete Linefeed in text file using batch file.
Is it possible to do.
Please provide some help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜清冷一曲。 2024-09-14 08:17:18

如果您的意思是从文本文件中删除空行,请在批处理文件中尝试此操作:

for /f "delims= tokens=*" %%x in (inputfile.txt) do echo %%x >> outputfile.txt

您可能还想将 inputfile.txtoutputfile.txt 替换为 %1< /strong> 和 %2 用于任何将其名称指定给批处理文件的文件

If you mean removing empty lines from text files try this in a batch file:

for /f "delims= tokens=*" %%x in (inputfile.txt) do echo %%x >> outputfile.txt

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文