in reply to Re: Re: japhy has met his match
in thread japhy has met his match
I've also worked out what the 'meta match' is for this expression (that is, $re2 below will only match $regex):$regex = '^[z26\\\\\[\]\{\}\^\$]{26}\z';
So, the idea is your want, in the regex, to have $re2 attempt to match $regex, then have $regex left around that basically is a large character class with a {n} modifier (Thus, if we need to add any new characters like '(', ')', or '?', we work with $regex to add them, modify $re2 above, and we're set).$re2 = '^\^\\[z26\\\\\\\\\\\\\[\\\\\]\\\\\{\\\\\}\\\\\^\\\\\$\\]\\{26\ +\}\\\\z\z';
However, I can't figure out how to do this part. I'm still thinking about it, but this is a rather interesting problem.
|
|---|