您的位置:首页 > 其它

每天一道LeetCode--434. Number of Segments in a String

2016-12-05 21:23 190 查看
Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters.

For example,

Input:
"Hello, my name is John"


Output:
5


public int countSegments(String s) {
String trimmed = s.trim();
if (trimmed.length() == 0)
return 0;
else
return trimmed.split("\\s+").length;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: