赞
踩
给你一个字符串 s
,由若干单词组成,单词前后用一些空格字符隔开。返回字符串中 最后一个 单词的长度。
单词 是指仅由字母组成、不包含任何空格字符的最大子字符串。
示例 1:
输入:s = "Hello World"
输出:5
解释:最后一个单词是“World”,长度为 5。
示例 2:
输入:s = " fly me to the moon "
输出:4
解释:最后一个单词是“moon”,长度为 4。
示例 3:
输入:s = "luffy is still joyboy"
输出:6
解释:最后一个单词是长度为 6 的“joyboy”。
提示:
1 <= s.length <= 104
s
仅有英文字母和空格 ' '
组成s
中至少存在一个单词public class lengthOfLastWord {
public static void main(String[] args) {
// 测试数据
System.out.println(lengthOfLastWord(" fly me to the moon "));
}
public static int lengthOfLastWord(String s) {
// 用split把字符串s转化为字符串数组,间隔条件为空格
String[] strings=s.split(" ");
// 返回字符串数组最后一个元素的长度
return strings[strings.length-1].length();
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。