In my TODO list in IntelliJ, I'd like to ignore auto-generated TODOs such as:
// TODO Auto-generated method stub
I'm trying the following regex without success:
\btodo\b^(?!Auto-generated).*
What am I missing?
Thanks in advance.
|
In my TODO list in IntelliJ, I'd like to ignore auto-generated TODOs such as:
I'm trying the following regex without success:
What am I missing? Thanks in advance. |
|||||||||||
|
does this work? |
|||
|
|
So basically this regex will probably never match. You match a word and then you match the start of the string? How can this ever happen? Also you ignore //, your capitalization is wrong and you escape brackets inside your negative lookahead. This does not seem to match your input... |
|||||||
|
|
you forgot to account for the space (and anything that might precede it) and why did you put [] around it? it's nowhere in the phrase that you want to match
|
||||
|