I need to write something like :
Code: Select all
if %choice% == q goto QUIT
but I want that it matches 'Q' also. So I thought about writing something like :
Code: Select all
if %choice% == q|Q goto QUIT
But it doesn't work.
Any idea how I can translate 'q' OR 'Q' ?
Thank you!