What syntax will check if a variable name containing spaces is defined?

前端 未结 4 878
你的背包
你的背包 2021-01-05 11:45

Windows user defined environment variable names can contain any character except =.

Special characters can be included by escaping them. A simpler metho

4条回答
  •  天命终不由人
    2021-01-05 12:22

    Interessting question (I love this syntax base questions).

    Obviously you know how to check it with delayed expansion and also FOR-parameters works.

    @echo off
    setlocal
    set "AAA BBB=value"
    set ""AAA BBB"="
    set "AAA="
    for %%a in ("AAA BBB") do if defined %%~a echo FOR: This works
    
    setlocal EnableDelayedExpansion
    set "varname=AAA BBB"
    if defined !varname! echo Delayed: This works
    
    if defined %varname% ( echo percent: Never comes here 
    ) ELSE ( echo percent: Never comes here ? )
    
    if defined AAA^ BBB ( echo escape1: Never comes here
    ) ELSE ( echo escape1: fails )
    
    set AAA=Hello
    if defined AAA^ BBB ( 
       echo escape2: It only test for AAA the BBB will be "removed"
    ) ELSE ( echo escape2: fails )
    
    set "space= "
    if defined AAA!space!BBB echo inject space: This works
    
    if defined "AAA BBB"  (echo Quote1: Never comes here 
    ) ELSE ( echo Quote1: Fails )
    
    set ""AAA BBB"=value"
    if defined "AAA BBB" echo Quote2: This works, it checks for "AAA BBB" with quotes
    

    In my opionion, in the escape2 example the parser first split the line into tokens this way:
    But at the execution time of the if defined it rescan the token so it only gets the AAA.
    You can't inject a second escape like AAA^^^ BBB as this only searches for the variable named AAA^

    I can't see a solution without delaying/FOR, as the escaping of the space always fails.

    EDIT: It can also be solved with SET
    The solution of ijprest uses the SET command to test the variable without the need of escaping the varname.
    But it also shows interessting behaviour with spaces inside and at the end of a varname.

    It seems to follow these rules:
    SET varname searches for all variables beginning with varname, but first it removes all characters after the last space character of varname, and it removes all leading spaces.
    So you can't search for variables with beginning with space (but it is also a bit tricky to create such a varname).

    The same behaviour is also active if the variablename is enclosed into quotes, but then exists one more rule.
    First remove all characters after the last quote, if there are at least two quotes. Use the text inside of the quotes, and use the "space"-rule.

    Sample.

    set    "   abc def ghi"  junk junk
    *** 1. removes the junk 
    set    "   abc def ghi"
    *** 2. removes the quotes
    set       abc def ghi
    *** 3. removes all after the last space, and the trailing spaces
    set abc def
    *** Search all variables beginning with abc def
    

提交回复
热议问题