vote up 1 vote down star

According to this, !==! is the not-equal string operator. Trying it, I get:

C:\> if "asdf" !==! "fdas" echo asdf
!==! was unexpected at this time.

What am I doing wrong?

flag

64% accept rate
according to what? Think you forgot to add a link or something – Glen Sep 14 at 13:10
True, added the link. – ripper234 Sep 14 at 13:16

3 Answers

vote up 3 vote down check

Use NEQ instead.

if "asdf" NEQ "fdas" echo asdf
link|flag
1  
this requires command extensions to be turned on (They are by default on 2000+ but can be turned off system wide or as a parameter to cmd.exe) Normally you should turn them on with setlocal, but for a simple if not equal test, just use "if not", it goes back to the good old DOS days – Anders Sep 14 at 20:27
vote up 1 vote down

Try:

if not "asdf" == "fdas" echo asdf

That works for me on Windows XP (I get the same error as you for the code you posted).

link|flag
vote up 2 vote down

try

if NOT "asdf" == "fdas" echo asdf

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.