regex¶
I just can't get over it, it's too hard for me.
match everything after match¶
the libexec part here is for macOS, you need gnu grep to do -P
this will match everything after repos/, the K is important here. the .* says that it should match everything afterwards.
remove blank / empty lines¶
to use it in editors like bbedit, use ^[\s]*$\n
remove blank space end of line¶
google re2 / golang(?)¶
match foo.example.com and foo-bar.example.com:
you can test your expression here.
swap markdown heading levels¶
swap H1 (#) with H3 (###)
remove --- delimiters¶
common example when used in markdown, it looks for the delimiter with a blank line before and after: