I\'d like to use a kind of logical operator \"AND\" in my regular expression. I tried this:
(?=exp1)(?=exp2)
But in PHP ?= doesn\'
?=
In addition to @Tim's answer:
This can never be true. You say in plain english : make sure that the text followed here is exp1 and also make sure that the text followed here is exp2. No way this is true. It will never match.