🧵
[Dart]文字列に含まれるスペースを削除する
文字列の「先頭」と「末尾」のスペースを削除する
trim()メソッドを使用して、先頭と末尾のスペースを削除することができます。
void main() {
String sentence = " This is a long sentence ";
print(sentence.trim()); // "This is a long sentence"
}
「中間」のスペースを削除する
replaceAll()メソッドを使用して、文字列中のスペースを削除することができます。
replaceAll abstract method
void main() {
String sentence = "This is a long sentence";
// すべてのスペースを削除
String noSpaces = sentence.replaceAll(" ", "");
print(noSpaces); // "Thisisalongsentence
}
Discussion