📌  相关文章
📜  如何使用 JQuery 计算字符串的单词数?

📅  最后修改于: 2021-11-24 05:14:39             🧑  作者: Mango

为了计算字符串的单词数,我们可以使用 JQuery split() 方法以及或不使用 trim() 方法。
.split() 方法只是将字符串按指定字符拆分为子字符串数组,而.trim() 方法可删除前导和尾随空格。

句法:

string.split(separator, limit)
    方法:
  • 从 HTML 元素中获取字符串。
  • 根据空格将字符串拆分为子字符串。
  • 计算子串的数量。

示例 1:与 trim() 方法一起,从字符串删除开头和结尾的空格



  

    How to calculate the number 
      of words in a string using Javascript?
    

  

    

          GeeksForGeeks      

    

How to calculate the number of words       in a string using Javascript?

         
            

输出:

  • 点击按钮前:
  • 点击按钮后:

示例 2:没有 trim() 方法



  

    Calculate the number
      of Words in a String
  

  

    

          GeeksForGeeks      

    

How to calculate the number of       words in a string using Javascript?

    

    
         

          

输出:

  • 点击按钮前:
  • 点击按钮后: