| 38 |
.sp |
.sp |
| 39 |
The options are: |
The options are: |
| 40 |
.sp |
.sp |
| 41 |
PCRE_ANCHORED Match only at the first position |
PCRE_ANCHORED Match only at the first position |
| 42 |
PCRE_BSR_ANYCRLF \eR matches only CR, LF, or CRLF |
PCRE_BSR_ANYCRLF \eR matches only CR, LF, or CRLF |
| 43 |
PCRE_BSR_UNICODE \eR matches all Unicode line endings |
PCRE_BSR_UNICODE \eR matches all Unicode line endings |
| 44 |
PCRE_NEWLINE_ANY Recognize any Unicode newline sequence |
PCRE_NEWLINE_ANY Recognize any Unicode newline sequence |
| 45 |
PCRE_NEWLINE_ANYCRLF Recognize CR, LF, and CRLF as newline sequences |
PCRE_NEWLINE_ANYCRLF Recognize CR, LF, & CRLF as newline sequences |
| 46 |
PCRE_NEWLINE_CR Set CR as the newline sequence |
PCRE_NEWLINE_CR Recognize CR as the only newline sequence |
| 47 |
PCRE_NEWLINE_CRLF Set CRLF as the newline sequence |
PCRE_NEWLINE_CRLF Recognize CRLF as the only newline sequence |
| 48 |
PCRE_NEWLINE_LF Set LF as the newline sequence |
PCRE_NEWLINE_LF Recognize LF as the only newline sequence |
| 49 |
PCRE_NOTBOL Subject is not the beginning of a line |
PCRE_NOTBOL Subject is not the beginning of a line |
| 50 |
PCRE_NOTEOL Subject is not the end of a line |
PCRE_NOTEOL Subject is not the end of a line |
| 51 |
PCRE_NOTEMPTY An empty string is not a valid match |
PCRE_NOTEMPTY An empty string is not a valid match |
| 52 |
PCRE_NO_START_OPTIMIZE Do not do "start-match" optimizations |
PCRE_NOTEMPTY_ATSTART An empty string at the start of the subject |
| 53 |
PCRE_NO_UTF8_CHECK Do not check the subject for UTF-8 |
is not a valid match |
| 54 |
validity (only relevant if PCRE_UTF8 |
PCRE_NO_START_OPTIMIZE Do not do "start-match" optimizations |
| 55 |
was set at compile time) |
PCRE_NO_UTF8_CHECK Do not check the subject for UTF-8 |
| 56 |
PCRE_PARTIAL ) Return PCRE_ERROR_PARTIAL for a partial match |
validity (only relevant if PCRE_UTF8 |
| 57 |
PCRE_PARTIAL_SOFT ) if no full matches are found |
was set at compile time) |
| 58 |
PCRE_PARTIAL_HARD Return PCRE_ERROR_PARTIAL for a partial match |
PCRE_PARTIAL ) Return PCRE_ERROR_PARTIAL for a partial |
| 59 |
even if there is a full match as well |
PCRE_PARTIAL_SOFT ) match if no full matches are found |
| 60 |
PCRE_DFA_SHORTEST Return only the shortest match |
PCRE_PARTIAL_HARD Return PCRE_ERROR_PARTIAL for a partial match |
| 61 |
PCRE_DFA_RESTART This is a restart after a partial match |
even if there is a full match as well |
| 62 |
|
PCRE_DFA_SHORTEST Return only the shortest match |
| 63 |
|
PCRE_DFA_RESTART Restart after a partial match |
| 64 |
.sp |
.sp |
| 65 |
There are restrictions on what may appear in a pattern when using this matching |
There are restrictions on what may appear in a pattern when using this matching |
| 66 |
function. Details are given in the |
function. Details are given in the |