[pcre-dev] minimum matching length

Top Page
Delete this message
Author: Jack Bates
Date:  
To: pcre-dev
Subject: [pcre-dev] minimum matching length
Is is possible, using PCRE, to determine the minimum matching length of
an expression? For example:

* ^HTTP.* => 4
* ^(?:HTTP)?.+ => 1
* ^(?:HTTP)?.* => 0