adambennett
New Member
I'm trying to match everything, but everything between [ and ].everything between [ and ] is\[code\]\[.+\]\[/code\]everything, but everything between [ and ] is\[code\][^(\[.+\])]+\[/code\]The search text is\[code\]valid[REGEX_EMAIL|REGEX_PASSWORD|REGEX_TEST]\[/code\]It matches "valid" and "REGEX_EMAIL|REGEX_PASSWORD|REGEX_TEST".It is supposed to match "valid", but not "REGEX_EMAIL|REGEX_PASSWORD|REGEX_TEST".How to solve?I want my php validation class to be like the CodeIgniter one...