统计一个字符串中出现to 的次数用Java写
时间: 2023-11-17 21:05:41 浏览: 82
java统计字符串单词个数的方法解析
5星 · 资源好评率100%
可以使用Java自带的String类中的`split()`函数和正则表达式来实现统计字符串中出现to的次数。
示例代码如下:
```java
public class Main {
public static void main(String[] args) {
String str = "to be or not to be, that is the question";
String[] words = str.split("\\s+"); // 使用空格分割字符串
int count = 0;
for (String word : words) {
if (word.equals("to")) {
count++;
}
}
System.out.println("字符串中出现to的次数为:" + count);
}
}
```
输出结果:
```
字符串中出现to的次数为:2
```
其中,`split("\\s+")`使用正则表达式表示将字符串按照空格分割成单词数组,`word.equals("to")`判断单词是否为to。
阅读全文