views:

25

answers:

1

var may be double quoted:

    set var="Very long text" 

or without quotes:

    set var=Some_Text

I would like to get the unquoted text, i.e. Very long text in the first case and Some_Text in the second one.

How could I remove the double quotes, if exist ?

+1  A: 
Olathe
I found also this solution, which looks nice: `set var=%var:"=%`. Thanks for your time !
Misha Moroshko