“hrabia słów JavaScript” Kod odpowiedzi

hrabia słów JavaScript

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

Metody ciągów liczba liczby słów wewnątrz ciągu 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>
Yawning Yak

liczyć słowo i przestrzeń w tekście 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

Jak sprawdzić, ile strun jest w zdaniu JavaScript

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

JS Count Word

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

Odpowiedzi podobne do “hrabia słów JavaScript”

Pytania podobne do “hrabia słów JavaScript”

Więcej pokrewnych odpowiedzi na “hrabia słów JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu