I need a regex specialist to help with this. The examples I found here and the network that I seem to be wrong. I am using PHP and I have the following regex expression
/([^a-zA-Z0-9])GC([A-Z0-9]+)/
This corresponds to elements such as GCABCD GC123A, etc. What I need to do is to exclude GCSTATS from this. So basically I want it to work the same way it does, except by ignoring the GCSTATS in the regex.
source share