How to write a Regular Expression in JavaScript to remove spaces?


To remove spaces in JavaScript, you can try to run the following regular expression. It removes the spaces from a string −

Example

 Live Demo

<html>
   <head>
      <script>
         var str = "Welcome to Tutorialspoint";
         document.write(str);
         
         //Removing Spaces
         document.write("<br>"+str.replace(/\s/g, ''));
      </script>
   </head>
   
   <body>
   </body>
</html>

Output

Updated on: 23-Jun-2020

155 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements