Answers for "javascript string remove spaces trim"

31

remove spaces in a string js

str.replace(/\s+/g, '')
Posted by: Guest on April-29-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 "javascript string remove spaces trim"

Code answers related to "Javascript"

Browse Popular Code Answers by Language