目录

JAVA 如何计算单词数


计算字符串中的单词数

您可以使用以下示例轻松计算字符串中的单词数:

示例

String words = "One Two Three Four";
int countWords = words.split("\\s").length;
System.out.println(countWords);
亲自试一试 »