Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I test my string as if it is a quote (") or not. The default escape character is '^', isn't it?
So I tried the following but with no success yet:

if  "!first_char!" == "^"" (...)

I tried double quote, too:

if  "!first_char!" == """" (...)

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

The problem is not with the right part of the comparison, but with the left part. As first_char contains a quote, then the left operand of the comparison does not make sense. So you have to escape with ^ the variable that holds the ".

try something like this...

if .^!first_char!.==.^". (@echo ^!first_char! YES) else (@echo ^!first_char! NO)
share|improve this answer
Nice explanation, but completly wrong :-) for delayed expansion, as the delayed expansions doesn't have any special effects, independent of the content – jeb Aug 5 '11 at 11:36
Thanks, it works! – Diepie Aug 5 '11 at 11:45
Yes, but the caret before the exclamation mark is useless, it works also with .!first_char!. instead of .^!first_char!., as the caret is removed before the expansion is executed – jeb Aug 5 '11 at 11:48
@jeb could you please explain why is it wrong? – PA. Aug 5 '11 at 11:50
Remove all carets and you'll see yourself it does not work. – PA. Aug 5 '11 at 11:51
show 1 more comment

The problem is only on the right part of the comparision.
The delayed expansion on the left side is always safe.
So you could simply use also a delayed expansion on the right side, like

set singleQuote="
if  "!first_char!" == "!singleQuote!" (...)

Or alternativly you could escape all quotes.

if  "!first_char!" == ^"^"^" (...)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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