“JS JS Count Word” Código de respuesta

JavaScript Count Palabras en 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

Cuente el número de palabras en 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 JS Count Word

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

Respuestas similares a “JS JS Count Word”

Preguntas similares a “JS JS Count Word”

Más respuestas relacionadas con “JS JS Count Word” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código