“JS Count Word” Respostas de código

JavaScript Count Words in String

var str = "your long string with many words.";
var wordCount = str.match(/(\w+)/g).length;
alert(wordCount); //6

//    \w+    between one and unlimited word characters
//    /g     greedy - don't stop after the first match
Unsightly Unicorn

contagem número de palavras em javascript

<html>
<body>
   <script>
      function countWords(str) {
         str = str.replace(/(^\s*)|(\s*$)/gi,"");
         str = str.replace(/[ ]{2,}/gi," ");
         str = str.replace(/\n /,"\n");
         return str.split(' ').length;
      }
      document.write(countWords("   Tutorix is one of the best E-learning   platforms"));
   </script>
</body>
</html>
Difficult Deer

JS Count Word

return str.split(' ').length;
Borma

Respostas semelhantes a “JS Count Word”

Perguntas semelhantes a “JS Count Word”

Mais respostas relacionadas para “JS Count Word” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código