Answers for "regex to remove all new lines"

1

regular expression to remove empty lines after text

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

deletes lines including regex match

Use d option at the end of sed replace definition for deleting line of matches.
sed -i "" "s/matching_pattern/d" file.txt
Posted by: Guest on October-24-2020

Code answers related to "regex to remove all new lines"

Code answers related to "Javascript"

Browse Popular Code Answers by Language