frankzappa77
Member
I've made a script to help me get past some restrictions at my school and I've been experimenting with the syntax for the 'if' test.
Here's some code that is somewhat similar to what I want:
Basically I want my script to accept both upper and lower cases. So if I type 's' or 'S', it will do whatever is nested under the if block. And if the input is anything other than 'S' or 's', it will loop back to the temp location.
I know that if I type it as:
it works; as I've been doing with my script so far.
My question is, how would I be able write the if command so that it will do whatever is nested under it regardless of whether the case is upper or lower?
Thanks.
Edit: I just realized that I can use the 'else' statement to fall back on, instead of my 'manual' method.
Here's some code that is somewhat similar to what I want:
Code:
@echo off
:temp
cls
echo type 's' to echo string
set /p ch=
if %ch%==(s S) (
goto hello
)
cls
echo Not a valid paremeter
pause
goto temp
:hello
cls
echo hello
pause
goto temp
I know that if I type it as:
Code:
set /p ch=
if %ch%==s (
goto hello
)
cls
My question is, how would I be able write the if command so that it will do whatever is nested under it regardless of whether the case is upper or lower?
Thanks.
Edit: I just realized that I can use the 'else' statement to fall back on, instead of my 'manual' method.
Last edited:
My Computer
System One
-
- Manufacturer/Model
- Acer Aspire 5630
- CPU
- Intel Core 2 Duo T5500 1.66GHz 65nm 667MHz FSB 2MB L2
- Motherboard
- Acer Grapevine Intel i945GM Chipset
- Memory
- 2x1GB DDR2 333MHz
- Graphics card(s)
- Intel Integrated GMA 950 256MB
- Sound Card
- Realtek High Definition Audio
- Monitor(s) Displays
- 15.4" WXGA Acer CrystalBrite LCD 16ms
- Screen Resolution
- 1280x800
- Hard Drives
- 200GB 5400rpm Toshiba MK2035GSS ATA-7, 250GB 7200rpm Maxtor External USB Hard Drive