In these lines…
some text
some text
# TODO some text
some text
What regular expression can I use to find all lines except "# TODO some text”?
I thought ((?!^# TODO.+).+) would work but didn’t.
Thanks
Ross