码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode】- Length of Last Word(最后一个单词的长度)

时间:2014-07-22 23:01:35      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   strong   io   

问题: ]

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.

给你一个字符串,设法获取它最后一个单词的长度。如果这个单词不存在,则返回0。

[ 分析 ]

A word is defined as a character sequence consists of non-space characters only.
For example, 
Given s = "Hello World",
return 5.

[ 解法]

public class Solution {

	public int lengthOfLastWord(String s) {
		if (s != null && !s.trim().equals("")) {
			String[] arr = s.trim().split(" ");
			int length = arr[arr.length - 1].length();
			return length;
		}
		return 0;
	}

	public static void main(String[] args) {
		String s = "leet code";
		System.out.println(new Solution().lengthOfLastWord(s));
	}
}


【LeetCode】- Length of Last Word(最后一个单词的长度),码迷,mamicode.com

【LeetCode】- Length of Last Word(最后一个单词的长度)

标签:style   blog   java   color   strong   io   

原文地址:http://blog.csdn.net/zdp072/article/details/24818143

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!