java计算下面字符串中单词的数量
时间: 2023-08-10 10:05:25 浏览: 95
zifuchuan.rar_统计 串中 单词 个数
可以使用 Java 的 String 类的 split() 方法将字符串按照空格分割成字符串数组,然后统计数组的长度即可得到单词数量。示例代码如下:
```java
String str = "Hello world, I'm a Java program.";
String[] words = str.split("\\s+"); // 使用正则表达式分割字符串
int wordCount = words.length;
System.out.println("The number of words in the string is: " + wordCount);
```
输出结果为:
```
The number of words in the string is: 7
```
其中,`\\s+` 表示一个或多个空格字符。你也可以根据需要在正则表达式中添加其他分隔符,比如逗号、分号等。
阅读全文