Answers for "regex remove spaces javascript"

24

remove spaces in a string js

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

remove extra space in string js

newString = string.replace(/s+/g,' ').trim();
Posted by: Guest on May-28-2020

Code answers related to "regex remove spaces javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language