首页 > 编程 > BAT > 正文

字符串拼接的批处理

2020-07-26 20:25:42
字体:
来源:转载
供稿:网友
复制代码 代码如下:

@echo off
:: 每6行拼接为一行,剩余的不够6行的显示在最后一行
::
::
set num=0
setlocal enabledelayedexpansion
for /f "delims=" %%i in (a.txt) do (
set /a num+=1
set str=!str! %%i
if !num! equ 6 echo !str! && set num=0 & set str=
)
if not "%str%"=="" echo %str%
pause
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表