“Wortzahl JavaScript” Code-Antworten

Wortzahl JavaScript

const str = "hello world";
console.log(str.split(' ').length); // @output 2
Aryamitra Chaudhuri

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

So überprüfen Sie, wie viele Saiten in einem Satz JavaScript enthalten sind

function WordCounter (str) {
	var words = str.split(" ").length;
	return words;
}
// this should work!
TechWhizKid

JS Count Word

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

Ähnliche Antworten wie “Wortzahl JavaScript”

Fragen ähnlich wie “Wortzahl JavaScript”

Weitere verwandte Antworten zu “Wortzahl JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen