Monday, March 20, 2023

Some RegEx for TextWrangler/BBEdit

 Some helpful RegEx for TextWrangler and BBEdit that I always seem to forget between uses.


Remove Blank Line (enable Grep)

Find: ^\r

Replace:


Remove Trailing Space (enable Grep)

Find: [ \t]+$

Replace:


Replace first space with a pipe (enable Grep)

Find: ^(\S*)\s

Replace: \1|


Replace first hyphen (enable Grep)

Find: ^(\D*\-)

Replace: <replacement pattern>

No comments:

Post a Comment