题意:给出一个字符串,其中包含大小写字母,空格,求其最后一个单词的长度
思路:将字符串以空格为分隔符,将其分割成字符串数组
代码如下:
public class Solution
{
public int lengthOfLastWord(String s) {
String[] words = s.split("\\s+");
if (words.length < 1) return 0;
return words[words.length - 1].length();
}
}