Answers for "regex remove empty lines and spaces"

1

regular expression to remove empty lines after text

Find: ^(?:[\t ]*(?:\r?\n|\r))+
Replace: ""
Posted by: Guest on April-29-2020
-1

regex to remove spaces

//..
return str.replace(/\s/g, '');
//..
Posted by: Guest on October-06-2020

Code answers related to "regex remove empty lines and spaces"

Code answers related to "Javascript"

Browse Popular Code Answers by Language