Georgi Hristozov
Blog
Music
About
Find CRLF line endings with a regex
14 March 2018 • tags:
regex
It’s totally possible with
[\r\n]
. For example, if you’re a
ripgrep
fan:
rg
"[
\r\n
]"
src/