Answers for "remove spaces js in string sentence"

31

remove spaces in a string js

str.replace(/\s+/g, '')
Posted by: Guest on April-29-2020
3

Delete spaces in text in javascript

var a = b = " /var/www/site/Brand new   document.docx ";

console.log( a.split(' ').join('') );
console.log( b.replace( /\s/g, '') );
Posted by: Guest on October-21-2020
13

js remove space before string

var str = "  Some text ";
str.trim();
// str = "Some text"
Posted by: Guest on May-27-2020
0

remove spaces from string javascript

var str = '/var/www/site/Brand new document.docx';

document.write( str.replace(/\s/g, '') );
 Run code snippetHide results
Posted by: Guest on January-21-2022

Code answers related to "remove spaces js in string sentence"

Code answers related to "Javascript"

Browse Popular Code Answers by Language