“JavaScript Count Words w ciągu” Kod odpowiedzi

JavaScript Count Words w ciągu

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

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

Liczenie słów w ciągu JavaScript String

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

JS Count Word

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

Odpowiedzi podobne do “JavaScript Count Words w ciągu”

Pytania podobne do “JavaScript Count Words w ciągu”

Więcej pokrewnych odpowiedzi na “JavaScript Count Words w ciągu” w JavaScript

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

Przeglądaj inne języki kodu