欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

统计英文单词的数量

程序员文章站 2024-02-23 23:34:42
...
使用正则表达式来统计一段文字中的英文单词的数量

public static void main(String[] args) throws IOException {
String str = "Welcome to China.";

Pattern pattern = Pattern.compile("\\b\\w+\\b");
Matcher matcher = pattern.matcher(str);
int count = 0;
while (matcher.find()) {
count++;
}
System.out.println("count=" + count);
}


结果:count=3