Script batch - Rimuovi entrambe le estremità
Viene utilizzato per rimuovere il primo e l'ultimo carattere di una stringa
Esempio
@echo off
set str = Batch scripts is easy. It is really easy
echo %str%
set str = %str:~1,-1%
echo %str%
La cosa fondamentale da notare sul programma precedente è che ~ 1, -1 viene utilizzato per rimuovere il primo e l'ultimo carattere di una stringa.
Produzione
Il comando precedente produce il seguente output.
Batch scripts is easy. It is really easy
atch scripts is easy. It is really eas