“Batch -Doppelzitate entfernen” Code-Antworten

Batch -Zitate entfernen

set foo="quoted string"
set foo=%foo:"=%		// Remove the quotes
Clear Cat

Batch -Doppelzitate entfernen

# Removing quotes from batch script arguments
# e.g. c:/path/to/my-script.bat "my-first-argument"
set foo=%1 # Stores "my-first-argument" with the quotes
set foo=%~1 # Stores "my-first-argument" without the quotes
Muddy Moose

Ähnliche Antworten wie “Batch -Doppelzitate entfernen”

Fragen ähnlich wie “Batch -Doppelzitate entfernen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen