Answers for "remove new line regex"

1

remove empty lines regex

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 "Javascript"

Browse Popular Code Answers by Language