在句子中找出最长的单词,并返回它的长度。
Posted spectrelb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在句子中找出最长的单词,并返回它的长度。相关的知识,希望对你有一定的参考价值。
function findLongestWord(str) { var arr = str.split(" "); var a = []; for (var i in arr) { a.push(arr[i].length); } return a.sort(function (a, b) { return b-a; })[0]; } findLongestWord("The quick brown fox jumped over the lazy dog");
findLongestWord("The quick brown fox jumped over the lazy dog")
应该返回一个数字
findLongestWord("The quick brown fox jumped over the lazy dog")
应该返回 6
findLongestWord("May the force be with you")
应该返回 5.findLongestWord("Google do a barrel roll")
应该返回 6.findLongestWord("What is the average airspeed velocity of an unladen swallow")
应该返回 8.findLongestWord("What if we try a super-long word such as otorhinolaryngology")
应该返回 19.以上是关于在句子中找出最长的单词,并返回它的长度。的主要内容,如果未能解决你的问题,请参考以下文章