📅  最后修改于: 2023-12-03 15:01:21.159000             🧑  作者: Mango
在Java中,我们可以使用String
类的split
方法来按照指定的分隔符来分割字符串。当需要按照空格分割字符串时,我们可以使用如下代码:
String str = "This is a sample sentence.";
String[] words = str.split(" ");
以上代码会将字符串str
根据空格分割成单词,并存储在一个String
类型的数组中,即words
。在此例中,words
数组的长度为4,分别为This
,is
,a
,sample
和sentence
。可以使用for
循环将这些单词打印出来。
for (String word : words) {
System.out.println(word);
}
输出:
This
is
a
sample
sentence.
此外,如果需要过滤掉原字符串中的空格,可以使用String
类的replaceAll
方法。例如,如果我们需要将字符串str
中的空格去除,可以这样写:
String str = "This is a sample sentence.";
String trimmedStr = str.replaceAll(" ", "");
以上代码会将字符串str
中的所有空格替换成空字符串,得到一个新的字符串trimmedStr
。
本文简单介绍了Java中按空格分割字符串的方法,希望对开发者有所帮助。