Script batch - Rimuovi

La funzione di sostituzione della stringa può essere utilizzata anche per rimuovere una sottostringa da un'altra stringa.

Esempio

@echo off 
set str = Batch scripts is easy. It is really easy. 
echo %str% 

set str = %str:is = % 
echo %str%

La cosa fondamentale da notare sul programma precedente è che la parola "is" viene rimossa dalla stringa utilizzando il comando: "stringtoberemoved" =.

Produzione

Il comando precedente produce il seguente output.

Batch scripts is easy. It is really easy. 
Batch scripts easy. It really easy.