java输出一字符串,统计其中有多少个单词。(单词之间用空格分隔)。
时间: 2023-11-22 09:53:44 浏览: 98
java基础编程:统计出给定字符串的英文字母、空格、数字和其它字符的个数
可以使用Java中的split()方法将字符串按照空格分隔成一个字符串数组,然后获取该数组的长度即可得到单词数量。
代码如下:
```java
public class WordCount {
public static void main(String[] args) {
String str = "This is a test string";
String[] words = str.split(" ");
int count = words.length;
System.out.println("单词数量为:" + count);
}
}
```
输出结果为:
```
单词数量为:5
```
阅读全文