Can you do a simple if statement in PCRE?
The situation, matching text in different brackets
/start([([{])(.*)\1/U
This will obviously not work because if the textion begins with a ( the backreference is looking for a ( rather than a ). Is there some way around this?
Thanks
Bubble