Length of Last Word

来源:互联网 发布:msp430用什么软件 编辑:程序博客网 时间:2024/06/06 00:48

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

public int lengthOfLastWord(String s) {     int len = s.length();     int count =0;     for(int i=len-1;i>=0;i--){         if(s.charAt(i)!=' '){             count++;         }         if(s.charAt(i)==' '&&count!=0){             return count;         }     }     return count;    }

文章转载自:https://www.cnblogs.com/springfor/p/3872326.html

原创粉丝点击