您的位置:首页 > Web前端 > JavaScript

[LeetCode][JavaScript]Length of Last Word

2015-08-05 23:51 871 查看

Length of Last Word

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.

Note: A word is defined as a character sequence consists of non-space characters only.

For example,
Given s =
"Hello World"
,
return
5
.

https://leetcode.com/problems/length-of-last-word/

求最后一个单词的长度。

js split方法可以传正则表达式作为参数,处理这题就很方便。

/**
* @param {string} s
* @return {number}
*/
var lengthOfLastWord = function(s) {
var splitArr = s.trim().split(/ +/);
return splitArr ? splitArr[splitArr.length - 1].length : 0;
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: