Why is delayed expansion in a batch file not working in this case?

后端 未结 3 1241
南笙
南笙 2020-12-04 00:26

This code

@echo off
setlocal EnableDelayedExpansion

set myvar=first
set first=second

echo myvar:!myvar!
set myvar=!myvar!
echo myvar:!myvar!
相关标签:
3条回答
  • 2020-12-04 00:51

    What you're trying to do won't work - delayed expansion only changes the variable expansion behavior of a variable inside of a block. It doesn't allow you the aliasing/nesting (for a lack of a better word) that you are attempting.

    set myvar=first sets the variable myvar to the text "first". set first=second sets the variable first to the text "second. There is no link between those two lines. myvar will never evaluate to something that it wasn't explicitly set to.

    I don't believe there is anyway to accomplish what you are trying to do here.


    * Edit *

    OK after taking a look at your answer I seeing how that works, you can get your desired output with this:

    @echo off
    setlocal EnableDelayedExpansion
    
    set myvar=first
    set first=second
    
    echo myvar:%myvar%
    set myvar=!%myvar%!
    echo myvar:%myvar%
    

    So the magic seems to happen because of the way that standard and delayed expansion occur. The line set myvar=!%myvar%! is seems be expanded first by the standard expander to set myvar=!first! (you'll see this if you run the script with echo on). Then the delayed expander runs and expands !first to "second" and set's myvar to that.

    I have no idea if this is documented behavior as to how standard and delayed expansion should work or just an implementation detail (which means it could break in the future)

    0 讨论(0)
  • 2020-12-04 00:53

    This problem is not directly related to Delayed variable Expansion, but to the fact that two value expansions are required: the first one give the variable name and the second one must replace this name by its value. The direct way to do that is via two expansions in the same line as shown in the previous answer: set myvar=!%myvar%! that works because %var% expansion is done before the command-line is analyzed for execution whereas !var! expansion is done later, just before the command is executed (hence the "delayed" name). This mean that %var% expansion may provide parts of the command and may cause syntax errors, but !var! not. For example if %var%==value ... cause an error if var is empty or have spaces, but if !var!==value ... never cause a syntax error.

    The double expansion of values may be achieved in other ways that does not involve Delayed variable Expansion. For example, we may create an auxiliary Batch file that do the second expansion:

    echo myvar:%myvar%
    echo set myvar=%%%myvar%%%> auxiliary.bat
    call auxiliary
    echo myvar:%myvar%
    

    Previous method may be used to do a third or even deeper level expansions, and even be combined with Delayed Expansions to create very complex value managements. This matter is not just a curiosity, but the key to access array elements or linked lists. For example:

    set month[1]=January
    set month[2]=February
    . . .
    set month[12]=December
    for /f "tokens=1-3 delims=/" %%a in ("%date%") do echo Today is !month[%%a]! %%b, %%c
    
    0 讨论(0)
  • 2020-12-04 00:56

    The problem is that set myvar=!myvar! expands to set myvar=first,
    you set it with the same content, and then you ask echo myvar:!myvar! to show the content of myvar.

    I will try to add some more explanations, even if Aacini and shf301 already answered the question.

    Both showed the double expansion with the !%var%! construct, and Aacini explained why it can work, and why the reversed version %!var!% can't work.

    IMHO there are four different expansions.
    Delayed Expansion:
    As Aacini explained the delayed expansion is safe against any special characters in the content (it can handle ALL characters from 0x01 to 0xFF).

    Percent Expansion:
    The percent expansion can't handle or removes some characters (even with escaping).
    It can be useful for simple content, as it can expand variables after an endlocal barrier.

    setlocal
    set "myVar=simple content"
    (
    endlocal
    set result=%myVar%
    )
    

    FOR-Loop-Parameters expansion:
    It is safe, if the delayed expansion is disabled, else the delayed expansion phase is executed after the expansion of the %%a variables.
    It can be useful, as it can expand variables after an endlocal barrier

    setlocal EnableDelayedExpansion
    set "var=complex content &<>!"
    for /F "delims=" %%A in ("!var!") DO (
      endlocal
      set "result=%%A"
    )
    

    SET Expansion:
    set var expands also a variable, and it is always safe and works independent of the delayed expansion mode.

    Aacini just explained how the call %%%var%%% construct work, I only want to give some additional remarks.
    call is stackable, you can use many of them and each restarts the parser.

    set "var=%%var%%#"
    call call call call call echo %var%
    

    results to %var%######

    But call have many disadvantages/side effects!
    Each call double all carets ^
    You can say: "Hey I've tested it and I can't see any doubling"

    call call call call echo ^^
    

    result ^

    Nevertheless it's true, but it's mostly hidden, as each restart also have a special character phase where carets escapes the next character, but you can see the doubling effect with

    call call call call echo "^^"^^
    

    result "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"^

    Even if a call expansion restarts the parser, you can never use the delayed expansion in any phase (only in the first one).

    call stops working if it detects unescaped special characters.

    echo you ^& me
    call echo you & me
    call echo you ^& me
    call echo you ^^& me
    call echo you ^^^& me
    

    Only the first results to the output you & me, all the others fails.

    Another problem is that call is extremly slow, a call set var=content is ~50times slower than set var=content, the cause is that call try to start an external program.

    @echo off
    setlocal
    (
       echo echo *** External batch, parameters are '%%*'
    ) > set.bat
    set "var="
    call set var=hello
    set var
    

    I hope it was interesting a bit ...
    And if you want to go more in depth you can read CALL me, or better avoid call
    and How does the Windows Command Interpreter (CMD.EXE) parse scripts?

    0 讨论(0)
提交回复
热议问题