Metodo String trim ()
Restituisce una nuova stringa rimuovendo tutti gli spazi iniziali e finali. Tuttavia, questo metodo non elimina gli spazi tra due stringhe.
Sintassi
String.trim()
Tipo di ritorno
Restituisce una stringa.
Esempio
void main() {
String str1 = "hello";
String str2 = "hello world";
String str3 = "hello";
print(str1.trim());
print(str2.trim());
print(str3.trim());
}
ProdurrĂ quanto segue output -.
hello
hello world
hello