欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS查找英文文章中出現(xiàn)頻率最高的單詞

 更新時(shí)間:2017年03月20日 09:53:50   作者:BYRONIC  
這篇文章主要為大家詳細(xì)介紹了JS查找英文文章中出現(xiàn)頻率最高的單詞,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

下面這個(gè)函數(shù)是js查找一篇英文文章中出現(xiàn)頻率最高的單詞(由26個(gè)英文字母大小寫(xiě)構(gòu)成),輸出該單詞及出現(xiàn)次數(shù),不區(qū)分大小寫(xiě),主要是正則的運(yùn)用:

function counts(article){
 article = article.trim().toUpperCase();
 var array = article.match(/[A-z]+/g);
 article = " "+array.join(" ")+" ";
 var max = 0,word,num = 0,maxword="";
 for(var i = 0; i < array.length; i++) {  
  word = new RegExp(" "+array[i]+" ",'g');
 num = article.match(word).length;
 if(num>max){
  max=num;
  maxword = array[i];
 }
 }
 console.log(maxword+" "+max);
}
counts("Age has reached the end of the beginning of a word. May be guilty in his seems to passing a lot of different life became the appearance of the same day;");

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論