[pcre-dev] Document SKIP position before or equal start_offs…

Top Page
Delete this message
Author: ND
Date:  
To: Pcre-dev
Subject: [pcre-dev] Document SKIP position before or equal start_offset

Good day!


I don't find in docs behaviour of SKIP when corresponding position is
before or equal start_offset.
It seems that in this case a "bumpalong" advance is 1, not SKIP or
associated MARK position.


/(?<=a(*SKIP)x)|c/
abcd\=offset=2
No match

/(*SKIP)x|c/
abcd
No match

/(?<=a(*SKIP)x)|d/
abcd\=offset=2
0: d


May be it can be documented.


Thanks a lot.