js 영어 문장 중 가장 빈도 가 높 은 단 어 를 찾 습 니 다.

1562 단어 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;");

좋은 웹페이지 즐겨찾기