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

58. Length of Last Word

时间:2016-05-08 12:01:05      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

    /*
     * 58. Length of Last Word 
     * 2016-5-7 by Mingyang 注意split中以“ ”才是空格
     */
    public static int lengthOfLastWord(String s) {
        if (s == null || s.length() == 0)
            return 0;
        s = s.trim();
        String[] cou = s.split(" ");
        int len = cou.length;
        String tempStr = cou[len - 1];
        return tempStr.length();
    }

 

58. Length of Last Word

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5470067.html

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