我在Windows批处理文件中有90%的方式。 它需要2个输入参数,输入和输出文件。 然后它读入输入文件,并将某些行子序列化为数组(从第2行开始)。 然后我们来一个输出循环。 我的计数器延迟扩展以通过阵列不会更新,除非我使用!counter2 !,%counter2%不起作用。
使用!arrayname [!counter2!]!不起作用。
这是代码。
@Echo off
if [%1] == [] goto usage
if [%2] == [] goto usage
echo start time : %time%>logfile.log
set input_file=%1
set output_file=%2
if exist %output_file% del %output_file%
Echo Start reading %input_file%>> logfile.log
setLocal EnableDelayedExpansion
set /a counter=1
for /F "tokens=* delims=" %%a in ('type %input_file%') DO (
::echo !counter!
if "!counter!"=="1" set header=%%a
if not "!counter!"=="1" (
set data[!counter!]=%%a
set line=%%a
set jobnumber[!counter!]=!line:~0,7!
set docnumber[!counter!]=!line:~7,5!
set pagecount[!counter!]=!line:~12,2!
set customernumber[!counter!]=!line:~14,20!
set presort[!counter!]=0000
set postcode[!counter!]=0000
set inserts[!counter!]=!line:~36,11!
set filler[!counter!]=000000
set address[!counter!]=!line:~58,350!
set filler2[!counter!]=" "
set endline[!counter!]=X
)
set /a counter=counter+1
)
Echo Start writing %output_file%>> logfile.log
for /L %%G in (2,1,%counter%) DO (
set counter2=%%G
echo !counter2!
echo !jobnumber[%counter2%]!!docnumber[%counter2%]!!pagecount[%counter2%]!!customernumber[%counter2%]!!presort[%counter2%]!!postcode[%counter2%]!!inserts[%counter2%]!!filler[%counter2%]!!address[%counter2%]!!filler2[%counter2%]!!endline[%counter2%]!>>%output_file%
)
echo end time : %time%>>logfile.log
pause
goto :eof
:usage
echo Usage: blah.bat input_filename output_filename
pause
goto :eof
这是echo!jobnumber [%counter2%]!事情没有得到解决。 echo!counter2!工作正常。
在你问之前,是的我知道这可以用C#或其他编程语言更好更容易地完成,但我的任务是在Windows批处理文件中完成。
提前感谢您提供的任何帮助。 电话
答案 0 :(得分:0)
尝试:
for /L %%G in (2,1,%counter%) DO (
set counter2=%%G
echo !counter2!
echo !jobnumber[%%G]!!docnumber[%%G]!!pagecount[%%G]!!customernumber[%%G]!!presort[%%G]!!postcode[%%G]!!inserts[%%G]!!filler[%%G]!!address[%%G]!!filler2[%%G]!!endline[%%G]!>>%output_file%
)
您没有更改coutner2
的值,因此您不需要它,您可以直接使用%%G
。
虽然如果你需要在counter2
中进行更改,你必须在for循环中再次包装它并使用它的标记。