Attention SPAMMERS: Don't advertise your services on my blog. If you do then you will have implicitly given me permission to disable any service you advertise via my blog by any means necessary.
Monday, September 14, 2015
Regex - Contains THIS String But Not THAT String
Here's a regular expression that will return lines that have THIS string but not THAT string:
THIS(?!.*?THAT)
Example
This could be useful if you are searching for tables that do not have the id attribute:
No comments:
Post a Comment