Java 如何计算字数
计算字符串中的单词数
您可以使用以下示例轻松计算字符串中的单词数:
例子
String words = "One Two Three Four";
int countWords = words.split("\\s").length;
System.out.println(countWords);
亲自尝试 »
您可以使用以下示例轻松计算字符串中的单词数:
String words = "One Two Three Four";
int countWords = words.split("\\s").length;
System.out.println(countWords);
亲自尝试 »
如果您想报告错误,以及为网站提供报价,在网站上添加广告或广告,请随时向管理员发送电子邮件:
邮箱:n667@163.com