I'm trying to write a regular expression match
I'd like to match c99 in files, so long as its not part of a hexadecimal color code for example
- Do NOT match on
#000c99 - DO match on
/mysite.com/c99.php - DO match on
%20c99.php - DO match on
c99?hi=moo
Is this even possible with regex?