-1

编写一个名为 wordCount 的方法,该方法接受一个字符串作为其参数并返回字符串中的单词数。单词是一个或多个非空格字符的序列(' ' 以外的任何字符)。例如,调用 wordCount("hello") 应该返回 1,调用 wordCount("你好吗?") 应该返回 3,调用 wordCount("this string has wide spaces") 应该返回 5,调用 wordCount (" ") 应该返回 0

4

2 回答 2

0
input =  input.trim()
return input.empty()?0:input.split("\\s+").length
于 2013-09-07T14:21:07.530 回答
0
String trimmedInput = input.trim();
int wordsInSentence = trimmedInput .isEmpty() ? 0 : trimmedInput.split("\\s+").length;
于 2013-09-07T14:07:49.023 回答