给你一个字符串 s,由若干单词组成,单词之间用空格隔开。返回字符串中最后一个单词的长度。如果不存在最后一个单词,请返回 0 。
单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
示例 1:
输入:s = “Hello World”
输出:5
示例 2:
输入:s = " "
输出:0
class Solution {
public:
int lengthOfLastWord(string s) {
s.erase( s.find_last_not_of(' ') + 1 );
int count = 0;
for(int i = s.size()-1;i>=0;i--){
if(s[i]==' ') return count;
count++;
}
return count;
}
};