Answers for "js count how many numbers are in string"

0

digit count in javascript

function digitCount(num) {
  if(num === 0 ) return 1
  return Math.floor(Math.log10(Math.abs(num))) + 1
}
Posted by: Guest on October-03-2020
3

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(/\n /,"\n");
   return str.split(' ').length;
   }
document.write(countWords("   Tutorix is one of the best E-learning   platforms"));
</script>
</body>
</html>
Posted by: Guest on January-30-2020

Code answers related to "js count how many numbers are in string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language