The key to the answer is the fact that normal (%
-)expansion (phase 1) occurs before recognition of special characters (in phase 2) — refer to the accepted answer to: How does the Windows Command Interpreter (CMD.EXE) parse scripts?
The first carets (^
) become removed by the command interpreter in the line
set $test_var=This is text with escaped delayed expansion syntax - ^^!$var1^^! and ^^!$var2^^!
when phase 2 is done, so every instance of ^^
becomes one literal ^
. You can prove this when you change @echo off
to @echo on
, so each parsed command line becomes echoed before being executed, or when you place the following command in the next line (thanks to user jeb for the hint):
rem // This displays the actual content of the variable:
set $test_var
In your next line
echo $test_var = %$test_var%
removal of the remaining carets happens, because – as already said – %
-expansion (phase 1) happens first, resulting in a command line like
echo $test_var = This is text with escaped delayed expansion syntax - ^!$var1^! and ^!$var2^!
and then phase 2 follows, where the remaining carets are recognised and removed, resulting in this final text
$test_var = This is text with escaped delayed expansion syntax - !$var1! and !$var2!
You can protect the carets (as well as any other special characters) in the set
command line when using the quoted syntax, like this:
set "$test_var=This is text with escaped delayed expansion syntax - ^!$var1^! and ^!$var2^!"
So you can save one level of escaping. However, this only works when the command extensions are enabled, but this is the default setting of the command interpreter anyway.
For the echo
command line however, you cannot use such a method, because quotation marks became returned too.
I spotted that you used echo.
to output an empty line. You should better use echo/
or echo(
(refer to the external resource ECHO. FAILS to give text or blank line - Instead use ECHO/ to find out why).
By the way, your displayed text does not match the actual situation, because you have got delayed expansion disabled.