Re: [pcre-dev] (*THEN) in last alternative

Top Page
Delete this message
Author: ND
Date:  
To: Pcre-dev
New-Topics: Re: [pcre-dev] (*THEN) in last alternative
Subject: Re: [pcre-dev] (*THEN) in last alternative
In addition:
if non-captured brackets replaces with captired ones, then result became
"MATCH":


PCRE version 8.11 2010-12-10
/\A.*?(a|b(*THEN)c)/
ba
0: ba
1: a


another example of this issue is:

PCRE version 8.11 2010-12-10
/\A(?!(?:a(*THEN)b))/
ac
No match


PCRE version 8.11 2010-12-10
/\A(?!(a(*THEN)b))/
ac
0: