DOS doesn't seem to deal well with the "&" character in a string. I'm trying to parse url's, many of which have one or more &'s. If I do something like:
set var = "http://finance.yahoo.com/mbview/threadview/?v=m&bn=2"
echo %var%
pause
I get
ECHO is off. Press any key to continue . . .
Removing the & character rectifies this, which would be a suitable work-around, but I need to do this in code. Is there any help for this?