58. Length of Last Word

题目地址:https://leetcode.com/problems/length-of-last-word/description/

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
class Solution {
    public int lengthOfLastWord(String s) {
        String[] str = s.split(" +");
        int len = str.length;
        if (len > 0)    return str[len - 1].length();
        return 0;
    }
}


========================================Talk is cheap, show me the code=======================================

posted @ 2018-05-05 20:35  绿叶萌飞  阅读(79)  评论(0编辑  收藏  举报