美文网首页
Length of Last Word

Length of Last Word

作者: 小明今晚加班 | 来源:发表于2019-02-22 20:57 被阅读4次

题目描述
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.

If the last word does not exist, return 0.

Note: A word is defined as a character sequence consists of non-space characters only.

Example:
Input: "Hello World"
Output: 5


我的Code如下:

class Solution {
    public int lengthOfLastWord(String s) {
        if(s.equals("")){
            return 0;
        }   
        //这里稍微注意下:如果s="hello",那么分割后strs的长度为1;
        //如果s=" ",那么分割后strs的长度为0;
        String[] strs = s.split(" ");
        if(strs.length == 0){            
            return 0;
        }
        
        return strs[strs.length - 1].length();
    }
}

相关文章

网友评论

      本文标题:Length of Last Word

      本文链接:https://www.haomeiwen.com/subject/nhsyyqtx.html