博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
58. Length of Last Word(js)
阅读量:5024 次
发布时间:2019-06-12

本文共 590 字,大约阅读时间需要 1 分钟。

58. 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.

Example:

Input: "Hello World"Output: 5 题意:给定一个字符串,返回最后一个单词的长度 代码如下:
/** * @param {string} s * @return {number} */var lengthOfLastWord = function(s) {    var str=s.trim();    var arr=str.split(' ');        return arr[arr.length-1].length;    };

 

转载于:https://www.cnblogs.com/xingguozhiming/p/10458519.html

你可能感兴趣的文章
数据分析 -- 白话一下什么是决策树模型(转载)
查看>>
Java SPI机制原理和使用场景
查看>>
web前端java script学习2017.7.18
查看>>
删除TXPlatform
查看>>
LaTex:图片排版
查看>>
并发访问超时的问题可能性(引用)
查看>>
中小团队基于Docker的Devops实践
查看>>
利用python打开摄像头并保存
查看>>
System函数的使用说明
查看>>
Selenium-测试对象操作之:获取浏览器滚动条滚动距离
查看>>
Linux下MySQL数据库安装与配置
查看>>
Extjs String转Json
查看>>
oracle入门(4)——少而常用的命令
查看>>
tcp文件上传优化
查看>>
单片机——间隔点亮LED
查看>>
【Python】实战一 外星人入侵
查看>>
Repeater 动态增加删除一行
查看>>
java学习笔记25(Collections类)
查看>>
KMP
查看>>
Java多线程基础
查看>>