POSIX (MySQL RLIKE) Regex to match A|B|C but eliminate D|E|F – PHP Versions
I had a completely working version on my Windows XAMPP testbed (in PHP) SELECT... ...WHERE itemTitle RLIKE '(?=.*A)+(?=.*B)+(?=.*C)+^((?!D|E|F).)*$' that stopped working when I moved the site to a real server with the error "repetition operator operand invalid". Research says that…