JS 영어 문장 중 가장 빈도 가 높 은 단어 찾기

946 단어 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;");
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기