“javaScript подсчет слов в строке” Ответ

javaScript подсчет слов в строке

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

методы строк 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

Считайте слово и пространство в текстовом 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

Подсчет нет слов в строке JavaScript

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

JS Count Word

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

Ответы похожие на “javaScript подсчет слов в строке”

Вопросы похожие на “javaScript подсчет слов в строке”

Больше похожих ответов на “javaScript подсчет слов в строке” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования