“JavaScript Count Words dans String” Réponses codées

JavaScript Count Words dans 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

Méthodes de chaîne JavaScript Count Nombre de mots à l'intérieur d'une chaîne

<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>
Yawning Yak

compter le mot et l'espace dans le texte 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

Compter le non de mot dans la chaîne javascript

return str.split(' ').length;
Glamorous Gharial

JS COUNT WORT

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

Réponses similaires à “JavaScript Count Words dans String”

Questions similaires à “JavaScript Count Words dans String”

Plus de réponses similaires à “JavaScript Count Words dans String” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code