I am trying to find all the lines that contains part of a search string but also does not begin with "00000000". I am using this expression in Notepad++ but will also use it in another custom app that we use that also uses regular expressions.
I want to search for 118200000 00000000 0000000000 but I do not want to include the lines if it is preceded with 00000000 For example If I had:
01905402834 000000017090156300000000000118200000 00000000 0000000000
01205028361 000000017090156300020381274118200000 00000000 0000000000
I do not want to pick-up the first line because it has 00000000 just before 1182, but I rather just have the second line.
I thought of trying (?!00000000)118200000 00000000 0000000000, but that matches all, so obviously I am missing something or misusing the expression.