“JavaScript zählen Wörter in String” Code-Antworten

JavaScript zählen Wörter 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

String -Methoden JavaScript zählen Anzahl der Wörter in einer Zeichenfolge

<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

Zählen Sie Wort und Raum im Text 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

Zählen Sie No of Word in JavaScript String

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

JS Count Word

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

Ähnliche Antworten wie “JavaScript zählen Wörter in String”

Fragen ähnlich wie “JavaScript zählen Wörter in String”

Weitere verwandte Antworten zu “JavaScript zählen Wörter in String” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen