@echo off
set /p before=请输入前面的字符
set /p after=请输入后面的字符
for /f "delims=" %%i in (1.txt) do (
if "%%i"=="" (
echo.>>2.txt
) else (
echo %before%%%i%after%>>2.txt
)
)
del 1.txt
ren 2.txt 1.txt
保存为123.bat 运行时保证123.bat和1.txt文件在同一目录下
解答“问题补充”
@echo off
setlocal EnableDelayedExpansion
if exist 2.txt del /a /f /q 2.txt
for /f "eol=# delims=" %%a in (1.txt) do (
set xz=%%a
set xz=!xz: =!
if defined xz echo 1 %%2%%a>>2.txt
)
看看我之前写的一个“批量生成代码”的批处理,应该能满足你的要求。
http://hi.baidu.com/%E5%BF%86%E6%9E%97%E5%AD%90/blog/item/1adb6adf54dda61649540381.html