OK, I've figured out your problem by looking at a deleted post in your previous question. In your deleted response (that should have been a comment or an edit to your question) you stated:
Thanks guys, it works great, although I just saw something I didn't
expect. Looks like I have nunbers 1,2 and 3 in parts of the command
line that I don't want changed. I need command line parameters 3 to 26
only changed in this way so I'll work on that.
One other note is that I went to this method because I tried putting
/*, */ and # directly in the command line and the return variables I
was getting were some filenames from my computer. I guess the
backslash was being interpreted as filenames somehow.
Is there a way to use /*, */ and # directly in the command line and
bring them in as variables properly? If not I will stay with my
numbering method.
Looking at your code in that question I see that you are attempting to iterate the arguments via a FOR loop. That works great as long as none of the arguments contain * or ?. Unfortunately there is no way to escape those characters to get your desired result.
The only good solution I am aware of is to use a GOTO loop with SHIFT to iterate your arguments.
@echo off
setlocal
set n=0
:parseArgs
set /a n+=1
(set arg%n%=%1)
if defined arg%n% (
shift /1
goto :parseArgs
)
::display the parsed arguments
set arg