0

我在多行中有如下字符串的文本文件

1234
234545
123
16322

我需要一个输出,比如使用 Windows 批处理脚本

1234,234545,123,16322
4

1 回答 1

4

尝试这个:

@echo off
setlocal EnableDelayedExpansion
set "txt="
set input=input.txt
for /f "delims=" %%a in (%input%) do (
  set "txt=!txt!%%a,"
)
set "txt=!txt:~0,-1!"
>new.txt echo !txt!
于 2013-10-21T17:27:00.850 回答