Regex question

  • Thread starter Thread starter Hardy Wang
  • Start date Start date
H

Hardy Wang

Hi:
How to write a pattern to find strings which do not contain some certain
string?
For example, I need to search all strings without "abc" in them.

Thanks!
 
So, check if string has "abc" inside and skip it if it has.

Why this doesn't work for you?

HTH
Alex
 
Back
Top