Skip to content
On this page

434. 字符串中的单词数

统计字符串中的单词个数,这里的单词指的是连续的不是空格的字符。
请注意,你可以假定字符串里不包括任何不可打印的字符。

示例:
输入: "Hello, my name is John"
输出: 5
解释: 这里的单词是指连续的不是空格的字符,所以 "H ello," 算作 1 个单词。

javascript
/**
 * @param {string} s
 * @return {number}
 */
var countSegments = function (s) {
  return s.trim().split(" ").filter(Boolean).length
}

console.log(countSegments("Hello, my name is John"))
console.log(
  countSegments("Of all the gin joints in all the towns in all the world,   ")
)
console.log(countSegments(", , , ,        a, eaefa"))
console.log(countSegments("        "))