| 218 |
documentation. |
documentation. |
| 219 |
. |
. |
| 220 |
. |
. |
| 221 |
|
.\" HTML <a name="newlines"></a> |
| 222 |
.SH NEWLINES |
.SH NEWLINES |
| 223 |
.rs |
.rs |
| 224 |
.sp |
.sp |
| 225 |
PCRE supports four different conventions for indicating line breaks in |
PCRE supports five different conventions for indicating line breaks in |
| 226 |
strings: a single CR (carriage return) character, a single LF (linefeed) |
strings: a single CR (carriage return) character, a single LF (linefeed) |
| 227 |
character, the two-character sequence CRLF, or any Unicode newline sequence. |
character, the two-character sequence CRLF, any of the three preceding, or any |
| 228 |
The Unicode newline sequences are the three just mentioned, plus the single |
Unicode newline sequence. The Unicode newline sequences are the three just |
| 229 |
characters VT (vertical tab, U+000B), FF (formfeed, U+000C), NEL (next line, |
mentioned, plus the single characters VT (vertical tab, U+000B), FF (formfeed, |
| 230 |
U+0085), LS (line separator, U+2028), and PS (paragraph separator, U+2029). |
U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS |
| 231 |
|
(paragraph separator, U+2029). |
| 232 |
.P |
.P |
| 233 |
Each of the first three conventions is used by at least one operating system as |
Each of the first three conventions is used by at least one operating system as |
| 234 |
its standard newline sequence. When PCRE is built, a default can be specified. |
its standard newline sequence. When PCRE is built, a default can be specified. |
| 236 |
default can be overridden, either when a pattern is compiled, or when it is |
default can be overridden, either when a pattern is compiled, or when it is |
| 237 |
matched. |
matched. |
| 238 |
.P |
.P |
| 239 |
|
At compile time, the newline convention can be specified by the \fIoptions\fP |
| 240 |
|
argument of \fBpcre_compile()\fP, or it can be specified by special text at the |
| 241 |
|
start of the pattern itself; this overrides any other settings. See the |
| 242 |
|
.\" HREF |
| 243 |
|
\fBpcrepattern\fP |
| 244 |
|
.\" |
| 245 |
|
page for details of the special character sequences. |
| 246 |
|
.P |
| 247 |
In the PCRE documentation the word "newline" is used to mean "the character or |
In the PCRE documentation the word "newline" is used to mean "the character or |
| 248 |
pair of characters that indicate a line break". The choice of newline |
pair of characters that indicate a line break". The choice of newline |
| 249 |
convention affects the handling of the dot, circumflex, and dollar |
convention affects the handling of the dot, circumflex, and dollar |
| 250 |
metacharacters, the handling of #-comments in /x mode, and, when CRLF is a |
metacharacters, the handling of #-comments in /x mode, and, when CRLF is a |
| 251 |
recognized line ending sequence, the match position advancement for a |
recognized line ending sequence, the match position advancement for a |
| 252 |
non-anchored pattern. The choice of newline convention does not affect the |
non-anchored pattern. There is more detail about this in the |
| 253 |
interpretation of the \en or \er escape sequences. |
.\" HTML <a href="#execoptions"> |
| 254 |
|
.\" </a> |
| 255 |
|
section on \fBpcre_exec()\fP options |
| 256 |
|
.\" |
| 257 |
|
below. |
| 258 |
|
.P |
| 259 |
|
The choice of newline convention does not affect the interpretation of |
| 260 |
|
the \en or \er escape sequences, nor does it affect what \eR matches, which is |
| 261 |
|
controlled in a similar way, but by separate options. |
| 262 |
. |
. |
| 263 |
. |
. |
| 264 |
.SH MULTITHREADING |
.SH MULTITHREADING |
| 282 |
.\" HREF |
.\" HREF |
| 283 |
\fBpcreprecompile\fP |
\fBpcreprecompile\fP |
| 284 |
.\" |
.\" |
| 285 |
documentation. |
documentation. However, compiling a regular expression with one version of PCRE |
| 286 |
|
for use with a different version is not guaranteed to work and may cause |
| 287 |
|
crashes. |
| 288 |
. |
. |
| 289 |
. |
. |
| 290 |
.SH "CHECKING BUILD-TIME OPTIONS" |
.SH "CHECKING BUILD-TIME OPTIONS" |
| 317 |
.sp |
.sp |
| 318 |
The output is an integer whose value specifies the default character sequence |
The output is an integer whose value specifies the default character sequence |
| 319 |
that is recognized as meaning "newline". The four values that are supported |
that is recognized as meaning "newline". The four values that are supported |
| 320 |
are: 10 for LF, 13 for CR, 3338 for CRLF, and -1 for ANY. The default should |
are: 10 for LF, 13 for CR, 3338 for CRLF, -2 for ANYCRLF, and -1 for ANY. The |
| 321 |
normally be the standard sequence for your operating system. |
default should normally be the standard sequence for your operating system. |
| 322 |
|
.sp |
| 323 |
|
PCRE_CONFIG_BSR |
| 324 |
|
.sp |
| 325 |
|
The output is an integer whose value indicates what character sequences the \eR |
| 326 |
|
escape sequence matches by default. A value of 0 means that \eR matches any |
| 327 |
|
Unicode line ending sequence; a value of 1 means that \eR matches only CR, LF, |
| 328 |
|
or CRLF. The default can be overridden when a pattern is compiled or matched. |
| 329 |
.sp |
.sp |
| 330 |
PCRE_CONFIG_LINK_SIZE |
PCRE_CONFIG_LINK_SIZE |
| 331 |
.sp |
.sp |
| 468 |
.\" |
.\" |
| 469 |
documentation. |
documentation. |
| 470 |
.sp |
.sp |
| 471 |
|
PCRE_BSR_ANYCRLF |
| 472 |
|
PCRE_BSR_UNICODE |
| 473 |
|
.sp |
| 474 |
|
These options (which are mutually exclusive) control what the \eR escape |
| 475 |
|
sequence matches. The choice is either to match only CR, LF, or CRLF, or to |
| 476 |
|
match any Unicode newline sequence. The default is specified when PCRE is |
| 477 |
|
built. It can be overridden from within the pattern, or by setting an option |
| 478 |
|
when a compiled pattern is matched. |
| 479 |
|
.sp |
| 480 |
PCRE_CASELESS |
PCRE_CASELESS |
| 481 |
.sp |
.sp |
| 482 |
If this bit is set, letters in the pattern match both upper and lower case |
If this bit is set, letters in the pattern match both upper and lower case |
| 568 |
PCRE_NEWLINE_CR |
PCRE_NEWLINE_CR |
| 569 |
PCRE_NEWLINE_LF |
PCRE_NEWLINE_LF |
| 570 |
PCRE_NEWLINE_CRLF |
PCRE_NEWLINE_CRLF |
| 571 |
|
PCRE_NEWLINE_ANYCRLF |
| 572 |
PCRE_NEWLINE_ANY |
PCRE_NEWLINE_ANY |
| 573 |
.sp |
.sp |
| 574 |
These options override the default newline definition that was chosen when PCRE |
These options override the default newline definition that was chosen when PCRE |
| 575 |
was built. Setting the first or the second specifies that a newline is |
was built. Setting the first or the second specifies that a newline is |
| 576 |
indicated by a single character (CR or LF, respectively). Setting |
indicated by a single character (CR or LF, respectively). Setting |
| 577 |
PCRE_NEWLINE_CRLF specifies that a newline is indicated by the two-character |
PCRE_NEWLINE_CRLF specifies that a newline is indicated by the two-character |
| 578 |
CRLF sequence. Setting PCRE_NEWLINE_ANY specifies that any Unicode newline |
CRLF sequence. Setting PCRE_NEWLINE_ANYCRLF specifies that any of the three |
| 579 |
sequence should be recognized. The Unicode newline sequences are the three just |
preceding sequences should be recognized. Setting PCRE_NEWLINE_ANY specifies |
| 580 |
mentioned, plus the single characters VT (vertical tab, U+000B), FF (formfeed, |
that any Unicode newline sequence should be recognized. The Unicode newline |
| 581 |
U+000C), NEL (next line, U+0085), LS (line separator, U+2028), and PS |
sequences are the three just mentioned, plus the single characters VT (vertical |
| 582 |
(paragraph separator, U+2029). The last two are recognized only in UTF-8 mode. |
tab, U+000B), FF (formfeed, U+000C), NEL (next line, U+0085), LS (line |
| 583 |
|
separator, U+2028), and PS (paragraph separator, U+2029). The last two are |
| 584 |
|
recognized only in UTF-8 mode. |
| 585 |
.P |
.P |
| 586 |
The newline setting in the options word uses three bits that are treated |
The newline setting in the options word uses three bits that are treated |
| 587 |
as a number, giving eight possibilities. Currently only five are used (default |
as a number, giving eight possibilities. Currently only six are used (default |
| 588 |
plus the four values above). This means that if you set more than one newline |
plus the five values above). This means that if you set more than one newline |
| 589 |
option, the combination may or may not be sensible. For example, |
option, the combination may or may not be sensible. For example, |
| 590 |
PCRE_NEWLINE_CR with PCRE_NEWLINE_LF is equivalent to PCRE_NEWLINE_CRLF, but |
PCRE_NEWLINE_CR with PCRE_NEWLINE_LF is equivalent to PCRE_NEWLINE_CRLF, but |
| 591 |
other combinations yield unused numbers and cause an error. |
other combinations may yield unused numbers and cause an error. |
| 592 |
.P |
.P |
| 593 |
The only time that a line break is specially recognized when compiling a |
The only time that a line break is specially recognized when compiling a |
| 594 |
pattern is if PCRE_EXTENDED is set, and an unescaped # outside a character |
pattern is if PCRE_EXTENDED is set, and an unescaped # outside a character |
| 634 |
PCRE_NO_UTF8_CHECK |
PCRE_NO_UTF8_CHECK |
| 635 |
.sp |
.sp |
| 636 |
When PCRE_UTF8 is set, the validity of the pattern as a UTF-8 string is |
When PCRE_UTF8 is set, the validity of the pattern as a UTF-8 string is |
| 637 |
automatically checked. If an invalid UTF-8 sequence of bytes is found, |
automatically checked. There is a discussion about the |
| 638 |
\fBpcre_compile()\fP returns an error. If you already know that your pattern is |
.\" HTML <a href="pcre.html#utf8strings"> |
| 639 |
valid, and you want to skip this check for performance reasons, you can set the |
.\" </a> |
| 640 |
PCRE_NO_UTF8_CHECK option. When it is set, the effect of passing an invalid |
validity of UTF-8 strings |
| 641 |
UTF-8 string as a pattern is undefined. It may cause your program to crash. |
.\" |
| 642 |
Note that this option can also be passed to \fBpcre_exec()\fP and |
in the main |
| 643 |
\fBpcre_dfa_exec()\fP, to suppress the UTF-8 validity checking of subject |
.\" HREF |
| 644 |
strings. |
\fBpcre\fP |
| 645 |
|
.\" |
| 646 |
|
page. If an invalid UTF-8 sequence of bytes is found, \fBpcre_compile()\fP |
| 647 |
|
returns an error. If you already know that your pattern is valid, and you want |
| 648 |
|
to skip this check for performance reasons, you can set the PCRE_NO_UTF8_CHECK |
| 649 |
|
option. When it is set, the effect of passing an invalid UTF-8 string as a |
| 650 |
|
pattern is undefined. It may cause your program to crash. Note that this option |
| 651 |
|
can also be passed to \fBpcre_exec()\fP and \fBpcre_dfa_exec()\fP, to suppress |
| 652 |
|
the UTF-8 validity checking of subject strings. |
| 653 |
. |
. |
| 654 |
. |
. |
| 655 |
.SH "COMPILATION ERROR CODES" |
.SH "COMPILATION ERROR CODES" |
| 689 |
26 malformed number or name after (?( |
26 malformed number or name after (?( |
| 690 |
27 conditional group contains more than two branches |
27 conditional group contains more than two branches |
| 691 |
28 assertion expected after (?( |
28 assertion expected after (?( |
| 692 |
29 (?R or (?digits must be followed by ) |
29 (?R or (?[+-]digits must be followed by ) |
| 693 |
30 unknown POSIX class name |
30 unknown POSIX class name |
| 694 |
31 POSIX collating elements are not supported |
31 POSIX collating elements are not supported |
| 695 |
32 this version of PCRE is not compiled with PCRE_UTF8 support |
32 this version of PCRE is not compiled with PCRE_UTF8 support |
| 710 |
47 unknown property name after \eP or \ep |
47 unknown property name after \eP or \ep |
| 711 |
48 subpattern name is too long (maximum 32 characters) |
48 subpattern name is too long (maximum 32 characters) |
| 712 |
49 too many named subpatterns (maximum 10,000) |
49 too many named subpatterns (maximum 10,000) |
| 713 |
50 repeated subpattern is too long |
50 [this code is not in use] |
| 714 |
51 octal value is greater than \e377 (not in UTF-8 mode) |
51 octal value is greater than \e377 (not in UTF-8 mode) |
| 715 |
52 internal error: overran compiling workspace |
52 internal error: overran compiling workspace |
| 716 |
53 internal error: previously-checked referenced subpattern not found |
53 internal error: previously-checked referenced subpattern not found |
| 717 |
54 DEFINE group contains more than one branch |
54 DEFINE group contains more than one branch |
| 718 |
55 repeating a DEFINE group is not allowed |
55 repeating a DEFINE group is not allowed |
| 719 |
56 inconsistent NEWLINE options" |
56 inconsistent NEWLINE options |
| 720 |
|
57 \eg is not followed by a braced name or an optionally braced |
| 721 |
|
non-zero number |
| 722 |
|
58 (?+ or (?- or (?(+ or (?(- must be followed by a non-zero number |
| 723 |
. |
. |
| 724 |
. |
. |
| 725 |
.SH "STUDYING A PATTERN" |
.SH "STUDYING A PATTERN" |
| 779 |
.SH "LOCALE SUPPORT" |
.SH "LOCALE SUPPORT" |
| 780 |
.rs |
.rs |
| 781 |
.sp |
.sp |
| 782 |
PCRE handles caseless matching, and determines whether characters are letters |
PCRE handles caseless matching, and determines whether characters are letters, |
| 783 |
digits, or whatever, by reference to a set of tables, indexed by character |
digits, or whatever, by reference to a set of tables, indexed by character |
| 784 |
value. When running in UTF-8 mode, this applies only to characters with codes |
value. When running in UTF-8 mode, this applies only to characters with codes |
| 785 |
less than 128. Higher-valued codes never match escapes such as \ew or \ed, but |
less than 128. Higher-valued codes never match escapes such as \ew or \ed, but |
| 786 |
can be tested with \ep if PCRE is built with Unicode character property |
can be tested with \ep if PCRE is built with Unicode character property |
| 787 |
support. The use of locales with Unicode is discouraged. |
support. The use of locales with Unicode is discouraged. If you are handling |
| 788 |
.P |
characters with codes greater than 128, you should either use UTF-8 and |
| 789 |
An internal set of tables is created in the default C locale when PCRE is |
Unicode, or use locales, but not try to mix the two. |
| 790 |
built. This is used when the final argument of \fBpcre_compile()\fP is NULL, |
.P |
| 791 |
and is sufficient for many applications. An alternative set of tables can, |
PCRE contains an internal set of tables that are used when the final argument |
| 792 |
however, be supplied. These may be created in a different locale from the |
of \fBpcre_compile()\fP is NULL. These are sufficient for many applications. |
| 793 |
default. As more and more applications change to using Unicode, the need for |
Normally, the internal tables recognize only ASCII characters. However, when |
| 794 |
this locale support is expected to die away. |
PCRE is built, it is possible to cause the internal tables to be rebuilt in the |
| 795 |
|
default "C" locale of the local system, which may cause them to be different. |
| 796 |
|
.P |
| 797 |
|
The internal tables can always be overridden by tables supplied by the |
| 798 |
|
application that calls PCRE. These may be created in a different locale from |
| 799 |
|
the default. As more and more applications change to using Unicode, the need |
| 800 |
|
for this locale support is expected to die away. |
| 801 |
.P |
.P |
| 802 |
External tables are built by calling the \fBpcre_maketables()\fP function, |
External tables are built by calling the \fBpcre_maketables()\fP function, |
| 803 |
which has no arguments, in the relevant locale. The result can then be passed |
which has no arguments, in the relevant locale. The result can then be passed |
| 810 |
tables = pcre_maketables(); |
tables = pcre_maketables(); |
| 811 |
re = pcre_compile(..., tables); |
re = pcre_compile(..., tables); |
| 812 |
.sp |
.sp |
| 813 |
|
The locale name "fr_FR" is used on Linux and other Unix-like systems; if you |
| 814 |
|
are using Windows, the name for the French locale is "french". |
| 815 |
|
.P |
| 816 |
When \fBpcre_maketables()\fP runs, the tables are built in memory that is |
When \fBpcre_maketables()\fP runs, the tables are built in memory that is |
| 817 |
obtained via \fBpcre_malloc\fP. It is the caller's responsibility to ensure |
obtained via \fBpcre_malloc\fP. It is the caller's responsibility to ensure |
| 818 |
that the memory containing the tables remains available for as long as it is |
that the memory containing the tables remains available for as long as it is |
| 915 |
string, a pointer to the table is returned. Otherwise NULL is returned. The |
string, a pointer to the table is returned. Otherwise NULL is returned. The |
| 916 |
fourth argument should point to an \fBunsigned char *\fP variable. |
fourth argument should point to an \fBunsigned char *\fP variable. |
| 917 |
.sp |
.sp |
| 918 |
|
PCRE_INFO_HASCRORLF |
| 919 |
|
.sp |
| 920 |
|
Return 1 if the pattern contains any explicit matches for CR or LF characters, |
| 921 |
|
otherwise 0. The fourth argument should point to an \fBint\fP variable. An |
| 922 |
|
explicit match is either a literal CR or LF character, or \er or \en. |
| 923 |
|
.sp |
| 924 |
|
PCRE_INFO_JCHANGED |
| 925 |
|
.sp |
| 926 |
|
Return 1 if the (?J) option setting is used in the pattern, otherwise 0. The |
| 927 |
|
fourth argument should point to an \fBint\fP variable. The (?J) internal option |
| 928 |
|
setting changes the local PCRE_DUPNAMES option. |
| 929 |
|
.sp |
| 930 |
PCRE_INFO_LASTLITERAL |
PCRE_INFO_LASTLITERAL |
| 931 |
.sp |
.sp |
| 932 |
Return the value of the rightmost literal byte that must exist in any matched |
Return the value of the rightmost literal byte that must exist in any matched |
| 979 |
name-to-number map, remember that the length of the entries is likely to be |
name-to-number map, remember that the length of the entries is likely to be |
| 980 |
different for each compiled pattern. |
different for each compiled pattern. |
| 981 |
.sp |
.sp |
| 982 |
|
PCRE_INFO_OKPARTIAL |
| 983 |
|
.sp |
| 984 |
|
Return 1 if the pattern can be used for partial matching, otherwise 0. The |
| 985 |
|
fourth argument should point to an \fBint\fP variable. The |
| 986 |
|
.\" HREF |
| 987 |
|
\fBpcrepartial\fP |
| 988 |
|
.\" |
| 989 |
|
documentation lists the restrictions that apply to patterns when partial |
| 990 |
|
matching is used. |
| 991 |
|
.sp |
| 992 |
PCRE_INFO_OPTIONS |
PCRE_INFO_OPTIONS |
| 993 |
.sp |
.sp |
| 994 |
Return a copy of the options with which the pattern was compiled. The fourth |
Return a copy of the options with which the pattern was compiled. The fourth |
| 995 |
argument should point to an \fBunsigned long int\fP variable. These option bits |
argument should point to an \fBunsigned long int\fP variable. These option bits |
| 996 |
are those specified in the call to \fBpcre_compile()\fP, modified by any |
are those specified in the call to \fBpcre_compile()\fP, modified by any |
| 997 |
top-level option settings within the pattern itself. |
top-level option settings at the start of the pattern itself. In other words, |
| 998 |
|
they are the options that will be in force when matching starts. For example, |
| 999 |
|
if the pattern /(?im)abc(?-i)d/ is compiled with the PCRE_EXTENDED option, the |
| 1000 |
|
result is PCRE_CASELESS, PCRE_MULTILINE, and PCRE_EXTENDED. |
| 1001 |
.P |
.P |
| 1002 |
A pattern is automatically anchored by PCRE if all of its top-level |
A pattern is automatically anchored by PCRE if all of its top-level |
| 1003 |
alternatives begin with one of the following: |
alternatives begin with one of the following: |
| 1208 |
.\" |
.\" |
| 1209 |
documentation for a discussion of saving compiled patterns for later use. |
documentation for a discussion of saving compiled patterns for later use. |
| 1210 |
. |
. |
| 1211 |
|
.\" HTML <a name="execoptions"></a> |
| 1212 |
.SS "Option bits for \fBpcre_exec()\fP" |
.SS "Option bits for \fBpcre_exec()\fP" |
| 1213 |
.rs |
.rs |
| 1214 |
.sp |
.sp |
| 1223 |
to be anchored by virtue of its contents, it cannot be made unachored at |
to be anchored by virtue of its contents, it cannot be made unachored at |
| 1224 |
matching time. |
matching time. |
| 1225 |
.sp |
.sp |
| 1226 |
|
PCRE_BSR_ANYCRLF |
| 1227 |
|
PCRE_BSR_UNICODE |
| 1228 |
|
.sp |
| 1229 |
|
These options (which are mutually exclusive) control what the \eR escape |
| 1230 |
|
sequence matches. The choice is either to match only CR, LF, or CRLF, or to |
| 1231 |
|
match any Unicode newline sequence. These options override the choice that was |
| 1232 |
|
made or defaulted when the pattern was compiled. |
| 1233 |
|
.sp |
| 1234 |
PCRE_NEWLINE_CR |
PCRE_NEWLINE_CR |
| 1235 |
PCRE_NEWLINE_LF |
PCRE_NEWLINE_LF |
| 1236 |
PCRE_NEWLINE_CRLF |
PCRE_NEWLINE_CRLF |
| 1237 |
|
PCRE_NEWLINE_ANYCRLF |
| 1238 |
PCRE_NEWLINE_ANY |
PCRE_NEWLINE_ANY |
| 1239 |
.sp |
.sp |
| 1240 |
These options override the newline definition that was chosen or defaulted when |
These options override the newline definition that was chosen or defaulted when |
| 1242 |
\fBpcre_compile()\fP above. During matching, the newline choice affects the |
\fBpcre_compile()\fP above. During matching, the newline choice affects the |
| 1243 |
behaviour of the dot, circumflex, and dollar metacharacters. It may also alter |
behaviour of the dot, circumflex, and dollar metacharacters. It may also alter |
| 1244 |
the way the match position is advanced after a match failure for an unanchored |
the way the match position is advanced after a match failure for an unanchored |
| 1245 |
pattern. When PCRE_NEWLINE_CRLF or PCRE_NEWLINE_ANY is set, and a match attempt |
pattern. |
| 1246 |
fails when the current position is at a CRLF sequence, the match position is |
.P |
| 1247 |
advanced by two characters instead of one, in other words, to after the CRLF. |
When PCRE_NEWLINE_CRLF, PCRE_NEWLINE_ANYCRLF, or PCRE_NEWLINE_ANY is set, and a |
| 1248 |
|
match attempt for an unanchored pattern fails when the current position is at a |
| 1249 |
|
CRLF sequence, and the pattern contains no explicit matches for CR or LF |
| 1250 |
|
characters, the match position is advanced by two characters instead of one, in |
| 1251 |
|
other words, to after the CRLF. |
| 1252 |
|
.P |
| 1253 |
|
The above rule is a compromise that makes the most common cases work as |
| 1254 |
|
expected. For example, if the pattern is .+A (and the PCRE_DOTALL option is not |
| 1255 |
|
set), it does not match the string "\er\enA" because, after failing at the |
| 1256 |
|
start, it skips both the CR and the LF before retrying. However, the pattern |
| 1257 |
|
[\er\en]A does match that string, because it contains an explicit CR or LF |
| 1258 |
|
reference, and so advances only by one character after the first failure. |
| 1259 |
|
.P |
| 1260 |
|
An explicit match for CR of LF is either a literal appearance of one of those |
| 1261 |
|
characters, or one of the \er or \en escape sequences. Implicit matches such as |
| 1262 |
|
[^X] do not count, nor does \es (which includes CR and LF in the characters |
| 1263 |
|
that it matches). |
| 1264 |
|
.P |
| 1265 |
|
Notwithstanding the above, anomalous effects may still occur when CRLF is a |
| 1266 |
|
valid newline sequence and explicit \er or \en escapes appear in the pattern. |
| 1267 |
.sp |
.sp |
| 1268 |
PCRE_NOTBOL |
PCRE_NOTBOL |
| 1269 |
.sp |
.sp |
| 1306 |
When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8 |
When PCRE_UTF8 is set at compile time, the validity of the subject as a UTF-8 |
| 1307 |
string is automatically checked when \fBpcre_exec()\fP is subsequently called. |
string is automatically checked when \fBpcre_exec()\fP is subsequently called. |
| 1308 |
The value of \fIstartoffset\fP is also checked to ensure that it points to the |
The value of \fIstartoffset\fP is also checked to ensure that it points to the |
| 1309 |
start of a UTF-8 character. If an invalid UTF-8 sequence of bytes is found, |
start of a UTF-8 character. There is a discussion about the validity of UTF-8 |
| 1310 |
\fBpcre_exec()\fP returns the error PCRE_ERROR_BADUTF8. If \fIstartoffset\fP |
strings in the |
| 1311 |
contains an invalid value, PCRE_ERROR_BADUTF8_OFFSET is returned. |
.\" HTML <a href="pcre.html#utf8strings"> |
| 1312 |
|
.\" </a> |
| 1313 |
|
section on UTF-8 support |
| 1314 |
|
.\" |
| 1315 |
|
in the main |
| 1316 |
|
.\" HREF |
| 1317 |
|
\fBpcre\fP |
| 1318 |
|
.\" |
| 1319 |
|
page. If an invalid UTF-8 sequence of bytes is found, \fBpcre_exec()\fP returns |
| 1320 |
|
the error PCRE_ERROR_BADUTF8. If \fIstartoffset\fP contains an invalid value, |
| 1321 |
|
PCRE_ERROR_BADUTF8_OFFSET is returned. |
| 1322 |
.P |
.P |
| 1323 |
If you already know that your subject is valid, and you want to skip these |
If you already know that your subject is valid, and you want to skip these |
| 1324 |
checks for performance reasons, you can set the PCRE_NO_UTF8_CHECK option when |
checks for performance reasons, you can set the PCRE_NO_UTF8_CHECK option when |
| 1550 |
field in a \fBpcre_extra\fP structure (or defaulted) was reached. See the |
field in a \fBpcre_extra\fP structure (or defaulted) was reached. See the |
| 1551 |
description above. |
description above. |
| 1552 |
.sp |
.sp |
|
PCRE_ERROR_NULLWSLIMIT (-22) |
|
|
.sp |
|
|
When a group that can match an empty substring is repeated with an unbounded |
|
|
upper limit, the subject position at the start of the group must be remembered, |
|
|
so that a test for an empty string can be made when the end of the group is |
|
|
reached. Some workspace is required for this; if it runs out, this error is |
|
|
given. |
|
|
.sp |
|
| 1553 |
PCRE_ERROR_BADNEWLINE (-23) |
PCRE_ERROR_BADNEWLINE (-23) |
| 1554 |
.sp |
.sp |
| 1555 |
An invalid combination of PCRE_NEWLINE_\fIxxx\fP options was given. |
An invalid combination of PCRE_NEWLINE_\fIxxx\fP options was given. |
| 1556 |
.P |
.P |
| 1557 |
Error numbers -16 to -20 are not used by \fBpcre_exec()\fP. |
Error numbers -16 to -20 and -22 are not used by \fBpcre_exec()\fP. |
| 1558 |
. |
. |
| 1559 |
. |
. |
| 1560 |
.SH "EXTRACTING CAPTURED SUBSTRINGS BY NUMBER" |
.SH "EXTRACTING CAPTURED SUBSTRINGS BY NUMBER" |
| 1719 |
.\" HREF |
.\" HREF |
| 1720 |
\fBpcrepattern\fP |
\fBpcrepattern\fP |
| 1721 |
.\" |
.\" |
| 1722 |
documentation. When duplicates are present, \fBpcre_copy_named_substring()\fP |
documentation. |
| 1723 |
and \fBpcre_get_named_substring()\fP return the first substring corresponding |
.P |
| 1724 |
to the given name that is set. If none are set, an empty string is returned. |
When duplicates are present, \fBpcre_copy_named_substring()\fP and |
| 1725 |
The \fBpcre_get_stringnumber()\fP function returns one of the numbers that are |
\fBpcre_get_named_substring()\fP return the first substring corresponding to |
| 1726 |
associated with the name, but it is not defined which it is. |
the given name that is set. If none are set, PCRE_ERROR_NOSUBSTRING (-7) is |
| 1727 |
.sp |
returned; no data is returned. The \fBpcre_get_stringnumber()\fP function |
| 1728 |
|
returns one of the numbers that are associated with the name, but it is not |
| 1729 |
|
defined which it is. |
| 1730 |
|
.P |
| 1731 |
If you want to get full details of all captured substrings for a given name, |
If you want to get full details of all captured substrings for a given name, |
| 1732 |
you must use the \fBpcre_get_stringtable_entries()\fP function. The first |
you must use the \fBpcre_get_stringtable_entries()\fP function. The first |
| 1733 |
argument is the compiled pattern, and the second is the name. The third and |
argument is the compiled pattern, and the second is the name. The third and |
| 1952 |
.rs |
.rs |
| 1953 |
.sp |
.sp |
| 1954 |
.nf |
.nf |
| 1955 |
Last updated: 06 March 2007 |
Last updated: 11 September 2007 |
| 1956 |
Copyright (c) 1997-2007 University of Cambridge. |
Copyright (c) 1997-2007 University of Cambridge. |
| 1957 |
.fi |
.fi |