当前位置:主页 > javascript教程 > JS查找英文文章中出现频率最高的单词

JS查找文章里词频最高的单词

发布:2020-01-20 16:07:56 94


给网友朋友们带来一篇javascript相关的编程文章,网友勾波涛根据主题投稿了本篇教程内容,涉及到JS查找、JS查找英文文章中出现频率最高的单词相关内容,已被102网友关注,如果对知识点想更进一步了解可以在下方电子资料中获取。

JS查找英文文章中出现频率最高的单词

下面这个函数是js查找一篇英文文章中出现频率最高的单词(由26个英文字母大小写构成),输出该单词及出现次数,不区分大小写,主要是正则的运用:

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;");

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持码农之家。


参考资料

相关文章

网友讨论