Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

string methods javascript count number of words inside a string

<html>
<body>
<script>
   function countWords(str) {
   str = str.replace(/(^s*)|(s*$)/gi,"");
   str = str.replace(/[ ]{2,}/gi," ");
   str = str.replace(/
 /,"
");
   return str.split(' ').length;
   }
document.write(countWords("   Tutorix is one of the best E-learning   platforms"));
</script>
</body>
</html>
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #string #methods #javascript #count #number #words #string
ADD COMMENT
Topic
Name
8+5 =