Closed wisemike2 closed 1 year ago
The "Exclude dirs" works well for exact matches using (for example dir name is not): ^(not)$
But how to do the same to exclude any dir that has the word "not", like nottingham, or dehypnotization.
I tried using * around the word, but it didn't work.
you need to learn some regex, but that's not an issue of grepWin: https://regex101.com/
^.*(not).*$ should work.
^.*(not).*$
The "Exclude dirs" works well for exact matches using (for example dir name is not): ^(not)$
But how to do the same to exclude any dir that has the word "not", like nottingham, or dehypnotization.
I tried using * around the word, but it didn't work.