给定一个仅包含大小写字母和空格 ' '
的字符串 s
,返回其最后一个单词的长度。如果字符串从左向右滚动显示,那么最后一个单词就是最后出现的单词。
如果不存在最后一个单词,请返回 0 。
说明: 一个单词是指仅由字母组成、不包含任何空格字符的 最大子字符串。
package string;
/**
* Created with IntelliJ IDEA.
* Version : 1.0
* Author : cunyu
* Email : cunyu1024@foxmail.com
* Website : https://cunyu1943.github.io
* Date : 2020/3/19 22:01
* Project : LeetCode
* Package : string
* Class : FiftyEight
* Desc : 58.最后一个单词的长度
*/
public class FiftyEight {
public static void main(String[] args) {
FiftyEight fiftyEight = new FiftyEight();
String s = "hello world";
System.out.println(fiftyEight.lengthOfLastWord(s));
}
public int lengthOfLastWord(String s){
String[] array = null;
array = s.split(" ");
if (array.length == 0){
return 0;
}else {
return array[array.length-1].length();
}
}
}
[1]
58. 最后一个单词的长度: https://leetcode-cn.com/problems/length-of-last-word/