I was trying to use tokens in a for
loop to separate a CSV file in my batch file. Here's the code snippet:
for /f "tokens=1-31* delims=," %%a in ("!revamped!") do (
echo %%a
echo %%b
...
echo %%y
echo %%z
rem what parameter should I use next?
)
After using %%a
all the way to %%z
, I have no idea which parameter should I use next.
Question: What is the order of using parameters after using all %%a
to %%z
in a for
loop?
` which cannot be used as token and is the last character in the not-extended ascii chars table.– npocmaka Mar 31 '17 at 11:50