Answers for "regular expression to remove new line"

1

regex ignore newline

[sS]*
Posted by: Guest on February-26-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 "regular expression to remove new line"

Browse Popular Code Answers by Language