Answers for "character count without space regex javascript"

0

javascript regex only letters and spaces

//regex expression:
var reg_name_lastname = /^[a-zA-Z\s]*$/;

//Validation to the user_name input field
if(!reg_name_lastname.test($('#user_name').val())){ //
    alert("Correct your First Name: only letters and spaces.");
    valid = false;
}
Posted by: Guest on December-21-2020
2

count word and space in text 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>
Posted by: Guest on July-28-2020

Code answers related to "character count without space regex javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language