将多行批量处理为单行?

发布于 2024-12-10 18:06:02 字数 156 浏览 0 评论 0原文

在批处理(.bat)中,如果我有一个如下所示的文件:

test1
test2
test3

如何重写该文件的内容以使其位于同一行?例如:

test1, test2, test3


预先感谢!
尼克拉斯

In batch (.bat) if I have a file that looks like this:

test1
test2
test3

How can I rewrite the content of that file to be on the same line? e.g:

test1, test2, test3

Thanks in advance!
Niklas

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

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

发布评论

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

评论(2

够运 2024-12-17 18:06:02

使用for /f 命令逐行读取文件。然后,您可以将结果累积到变量中以获得最终输出。

Use the for /f command to read a file line-by-line. You can then accumulate the results into a variable for final output.

铜锣湾横着走 2024-12-17 18:06:02

我已经解决了!

for /f "Tokens=*" %%i in (file.txt) do (
set var=%%i
rem The magic below appends the data var with the data var + the var
if defined var set data=!data!, !var!
)

I've solved it!

for /f "Tokens=*" %%i in (file.txt) do (
set var=%%i
rem The magic below appends the data var with the data var + the var
if defined var set data=!data!, !var!
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文