How would You negate the following expression?
^(.(?<!_all_|_team_))*?$
I am interested in only those files that contain exactly these expressions with underscore anywhere in the file name. I do not have trouble returning only those that do not contain exactly these.
Unfortunately ^(.(?<=_all_|_team_))*?$
does not work. I need to tackle an ETL step in the PDI - Data Integration tool.
The alphabetic bits of these two expressions do not have to be case-sensitive.