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

Góra strony
Delete this message
Autor: ND
Data:  
Dla: Pcre-dev
Temat: [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.