pcre.3
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:87k
源码类别:

生物技术

开发平台:

C/C++

  1. .TH PCRE 3
  2. .SH NAME
  3. pcre - Perl-compatible regular expressions.
  4. .SH SYNOPSIS
  5. .B #include <pcre.h>
  6. .PP
  7. .SM
  8. .br
  9. .B pcre *pcre_compile(const char *fIpatternfR, int fIoptionsfR,
  10. .ti +5n
  11. .B const char **fIerrptrfR, int *fIerroffsetfR,
  12. .ti +5n
  13. .B const unsigned char *fItableptrfR);
  14. .PP
  15. .br
  16. .B pcre_extra *pcre_study(const pcre *fIcodefR, int fIoptionsfR,
  17. .ti +5n
  18. .B const char **fIerrptrfR);
  19. .PP
  20. .br
  21. .B int pcre_exec(const pcre *fIcodefR, "const pcre_extra *fIextrafR,"
  22. .ti +5n
  23. .B "const char *fIsubjectfR," int fIlengthfR, int fIstartoffsetfR,
  24. .ti +5n
  25. .B int fIoptionsfR, int *fIovectorfR, int fIovecsizefR);
  26. .PP
  27. .br
  28. .B int pcre_copy_substring(const char *fIsubjectfR, int *fIovectorfR,
  29. .ti +5n
  30. .B int fIstringcountfR, int fIstringnumberfR, char *fIbufferfR,
  31. .ti +5n
  32. .B int fIbuffersizefR);
  33. .PP
  34. .br
  35. .B int pcre_get_substring(const char *fIsubjectfR, int *fIovectorfR,
  36. .ti +5n
  37. .B int fIstringcountfR, int fIstringnumberfR,
  38. .ti +5n
  39. .B const char **fIstringptrfR);
  40. .PP
  41. .br
  42. .B int pcre_get_substring_list(const char *fIsubjectfR,
  43. .ti +5n
  44. .B int *fIovectorfR, int fIstringcountfR, "const char ***fIlistptrfR);"
  45. .PP
  46. .br
  47. .B void pcre_free_substring(const char *fIstringptrfR);
  48. .PP
  49. .br
  50. .B void pcre_free_substring_list(const char **fIstringptrfR);
  51. .PP
  52. .br
  53. .B const unsigned char *pcre_maketables(void);
  54. .PP
  55. .br
  56. .B int pcre_fullinfo(const pcre *fIcodefR, "const pcre_extra *fIextrafR,"
  57. .ti +5n
  58. .B int fIwhatfR, void *fIwherefR);
  59. .PP
  60. .br
  61. .B int pcre_info(const pcre *fIcodefR, int *fIoptptrfR, int
  62. .B *fIfirstcharptrfR);
  63. .PP
  64. .br
  65. .B char *pcre_version(void);
  66. .PP
  67. .br
  68. .B void *(*pcre_malloc)(size_t);
  69. .PP
  70. .br
  71. .B void (*pcre_free)(void *);
  72. .SH DESCRIPTION
  73. The PCRE library is a set of functions that implement regular expression
  74. pattern matching using the same syntax and semantics as Perl 5, with just a few
  75. differences (see below). The current implementation corresponds to Perl 5.005,
  76. with some additional features from later versions. This includes some
  77. experimental, incomplete support for UTF-8 encoded strings. Details of exactly
  78. what is and what is not supported are given below.
  79. PCRE has its own native API, which is described in this document. There is also
  80. a set of wrapper functions that correspond to the POSIX regular expression API.
  81. These are described in the fBpcreposixfR documentation.
  82. The native API function prototypes are defined in the header file fBpcre.hfR,
  83. and on Unix systems the library itself is called fBlibpcre.afR, so can be
  84. accessed by adding fB-lpcrefR to the command for linking an application which
  85. calls it. The header file defines the macros PCRE_MAJOR and PCRE_MINOR to
  86. contain the major and minor release numbers for the library. Applications can
  87. use these to include support for different releases.
  88. The functions fBpcre_compile()fR, fBpcre_study()fR, and fBpcre_exec()fR
  89. are used for compiling and matching regular expressions. A sample program that
  90. demonstrates the simplest way of using them is given in the file
  91. fIpcredemo.cfR. The last section of this man page describes how to run it.
  92. The functions fBpcre_copy_substring()fR, fBpcre_get_substring()fR, and
  93. fBpcre_get_substring_list()fR are convenience functions for extracting
  94. captured substrings from a matched subject string; fBpcre_free_substring()fR
  95. and fBpcre_free_substring_list()fR are also provided, to free the memory used
  96. for extracted strings.
  97. The function fBpcre_maketables()fR is used (optionally) to build a set of
  98. character tables in the current locale for passing to fBpcre_compile()fR.
  99. The function fBpcre_fullinfo()fR is used to find out information about a
  100. compiled pattern; fBpcre_info()fR is an obsolete version which returns only
  101. some of the available information, but is retained for backwards compatibility.
  102. The function fBpcre_version()fR returns a pointer to a string containing the
  103. version of PCRE and its date of release.
  104. The global variables fBpcre_mallocfR and fBpcre_freefR initially contain
  105. the entry points of the standard fBmalloc()fR and fBfree()fR functions
  106. respectively. PCRE calls the memory management functions via these variables,
  107. so a calling program can replace them if it wishes to intercept the calls. This
  108. should be done before calling any PCRE functions.
  109. .SH MULTI-THREADING
  110. The PCRE functions can be used in multi-threading applications, with the
  111. proviso that the memory management functions pointed to by fBpcre_mallocfR
  112. and fBpcre_freefR are shared by all threads.
  113. The compiled form of a regular expression is not altered during matching, so
  114. the same compiled pattern can safely be used by several threads at once.
  115. .SH COMPILING A PATTERN
  116. The function fBpcre_compile()fR is called to compile a pattern into an
  117. internal form. The pattern is a C string terminated by a binary zero, and
  118. is passed in the argument fIpatternfR. A pointer to a single block of memory
  119. that is obtained via fBpcre_mallocfR is returned. This contains the compiled
  120. code and related data. The fBpcrefR type is defined for the returned block;
  121. this is a typedef for a structure whose contents are not externally defined. It
  122. is up to the caller to free the memory when it is no longer required.
  123. Although the compiled code of a PCRE regex is relocatable, that is, it does not
  124. depend on memory location, the complete fBpcrefR data block is not
  125. fully relocatable, because it contains a copy of the fItableptrfR argument,
  126. which is an address (see below).
  127. The size of a compiled pattern is roughly proportional to the length of the
  128. pattern string, except that each character class (other than those containing
  129. just a single character, negated or not) requires 33 bytes, and repeat
  130. quantifiers with a minimum greater than one or a bounded maximum cause the
  131. relevant portions of the compiled pattern to be replicated.
  132. The fIoptionsfR argument contains independent bits that affect the
  133. compilation. It should be zero if no options are required. Some of the options,
  134. in particular, those that are compatible with Perl, can also be set and unset
  135. from within the pattern (see the detailed description of regular expressions
  136. below). For these options, the contents of the fIoptionsfR argument specifies
  137. their initial settings at the start of compilation and execution. The
  138. PCRE_ANCHORED option can be set at the time of matching as well as at compile
  139. time.
  140. If fIerrptrfR is NULL, fBpcre_compile()fR returns NULL immediately.
  141. Otherwise, if compilation of a pattern fails, fBpcre_compile()fR returns
  142. NULL, and sets the variable pointed to by fIerrptrfR to point to a textual
  143. error message. The offset from the start of the pattern to the character where
  144. the error was discovered is placed in the variable pointed to by
  145. fIerroffsetfR, which must not be NULL. If it is, an immediate error is given.
  146. If the final argument, fItableptrfR, is NULL, PCRE uses a default set of
  147. character tables which are built when it is compiled, using the default C
  148. locale. Otherwise, fItableptrfR must be the result of a call to
  149. fBpcre_maketables()fR. See the section on locale support below.
  150. This code fragment shows a typical straightforward call to fBpcre_compile()fR:
  151.   pcre *re;
  152.   const char *error;
  153.   int erroffset;
  154.   re = pcre_compile(
  155.     "^A.*Z",          /* the pattern */
  156.     0,                /* default options */
  157.     &error,           /* for error message */
  158.     &erroffset,       /* for error offset */
  159.     NULL);            /* use default character tables */
  160. The following option bits are defined in the header file:
  161.   PCRE_ANCHORED
  162. If this bit is set, the pattern is forced to be "anchored", that is, it is
  163. constrained to match only at the start of the string which is being searched
  164. (the "subject string"). This effect can also be achieved by appropriate
  165. constructs in the pattern itself, which is the only way to do it in Perl.
  166.   PCRE_CASELESS
  167. If this bit is set, letters in the pattern match both upper and lower case
  168. letters. It is equivalent to Perl's /i option.
  169.   PCRE_DOLLAR_ENDONLY
  170. If this bit is set, a dollar metacharacter in the pattern matches only at the
  171. end of the subject string. Without this option, a dollar also matches
  172. immediately before the final character if it is a newline (but not before any
  173. other newlines). The PCRE_DOLLAR_ENDONLY option is ignored if PCRE_MULTILINE is
  174. set. There is no equivalent to this option in Perl.
  175.   PCRE_DOTALL
  176. If this bit is set, a dot metacharater in the pattern matches all characters,
  177. including newlines. Without it, newlines are excluded. This option is
  178. equivalent to Perl's /s option. A negative class such as [^a] always matches a
  179. newline character, independent of the setting of this option.
  180.   PCRE_EXTENDED
  181. If this bit is set, whitespace data characters in the pattern are totally
  182. ignored except when escaped or inside a character class, and characters between
  183. an unescaped # outside a character class and the next newline character,
  184. inclusive, are also ignored. This is equivalent to Perl's /x option, and makes
  185. it possible to include comments inside complicated patterns. Note, however,
  186. that this applies only to data characters. Whitespace characters may never
  187. appear within special character sequences in a pattern, for example within the
  188. sequence (?( which introduces a conditional subpattern.
  189.   PCRE_EXTRA
  190. This option was invented in order to turn on additional functionality of PCRE
  191. that is incompatible with Perl, but it is currently of very little use. When
  192. set, any backslash in a pattern that is followed by a letter that has no
  193. special meaning causes an error, thus reserving these combinations for future
  194. expansion. By default, as in Perl, a backslash followed by a letter with no
  195. special meaning is treated as a literal. There are at present no other features
  196. controlled by this option. It can also be set by a (?X) option setting within a
  197. pattern.
  198.   PCRE_MULTILINE
  199. By default, PCRE treats the subject string as consisting of a single "line" of
  200. characters (even if it actually contains several newlines). The "start of line"
  201. metacharacter (^) matches only at the start of the string, while the "end of
  202. line" metacharacter ($) matches only at the end of the string, or before a
  203. terminating newline (unless PCRE_DOLLAR_ENDONLY is set). This is the same as
  204. Perl.
  205. When PCRE_MULTILINE it is set, the "start of line" and "end of line" constructs
  206. match immediately following or immediately before any newline in the subject
  207. string, respectively, as well as at the very start and end. This is equivalent
  208. to Perl's /m option. If there are no "\n" characters in a subject string, or
  209. no occurrences of ^ or $ in a pattern, setting PCRE_MULTILINE has no
  210. effect.
  211.   PCRE_UNGREEDY
  212. This option inverts the "greediness" of the quantifiers so that they are not
  213. greedy by default, but become greedy if followed by "?". It is not compatible
  214. with Perl. It can also be set by a (?U) option setting within the pattern.
  215.   PCRE_UTF8
  216. This option causes PCRE to regard both the pattern and the subject as strings
  217. of UTF-8 characters instead of just byte strings. However, it is available only
  218. if PCRE has been built to include UTF-8 support. If not, the use of this option
  219. provokes an error. Support for UTF-8 is new, experimental, and incomplete.
  220. Details of exactly what it entails are given below.
  221. .SH STUDYING A PATTERN
  222. When a pattern is going to be used several times, it is worth spending more
  223. time analyzing it in order to speed up the time taken for matching. The
  224. function fBpcre_study()fR takes a pointer to a compiled pattern as its first
  225. argument, and returns a pointer to a fBpcre_extrafR block (another typedef
  226. for a structure with hidden contents) containing additional information about
  227. the pattern; this can be passed to fBpcre_exec()fR. If no additional
  228. information is available, NULL is returned.
  229. The second argument contains option bits. At present, no options are defined
  230. for fBpcre_study()fR, and this argument should always be zero.
  231. The third argument for fBpcre_study()fR is a pointer to an error message. If
  232. studying succeeds (even if no data is returned), the variable it points to is
  233. set to NULL. Otherwise it points to a textual error message.
  234. This is a typical call to fBpcre_studyfR():
  235.   pcre_extra *pe;
  236.   pe = pcre_study(
  237.     re,             /* result of pcre_compile() */
  238.     0,              /* no options exist */
  239.     &error);        /* set to NULL or points to a message */
  240. At present, studying a pattern is useful only for non-anchored patterns that do
  241. not have a single fixed starting character. A bitmap of possible starting
  242. characters is created.
  243. .SH LOCALE SUPPORT
  244. PCRE handles caseless matching, and determines whether characters are letters,
  245. digits, or whatever, by reference to a set of tables. The library contains a
  246. default set of tables which is created in the default C locale when PCRE is
  247. compiled. This is used when the final argument of fBpcre_compile()fR is NULL,
  248. and is sufficient for many applications.
  249. An alternative set of tables can, however, be supplied. Such tables are built
  250. by calling the fBpcre_maketables()fR function, which has no arguments, in the
  251. relevant locale. The result can then be passed to fBpcre_compile()fR as often
  252. as necessary. For example, to build and use tables that are appropriate for the
  253. French locale (where accented characters with codes greater than 128 are
  254. treated as letters), the following code could be used:
  255.   setlocale(LC_CTYPE, "fr");
  256.   tables = pcre_maketables();
  257.   re = pcre_compile(..., tables);
  258. The tables are built in memory that is obtained via fBpcre_mallocfR. The
  259. pointer that is passed to fBpcre_compilefR is saved with the compiled
  260. pattern, and the same tables are used via this pointer by fBpcre_study()fR
  261. and fBpcre_exec()fR. Thus for any single pattern, compilation, studying and
  262. matching all happen in the same locale, but different patterns can be compiled
  263. in different locales. It is the caller's responsibility to ensure that the
  264. memory containing the tables remains available for as long as it is needed.
  265. .SH INFORMATION ABOUT A PATTERN
  266. The fBpcre_fullinfo()fR function returns information about a compiled
  267. pattern. It replaces the obsolete fBpcre_info()fR function, which is
  268. nevertheless retained for backwards compability (and is documented below).
  269. The first argument for fBpcre_fullinfo()fR is a pointer to the compiled
  270. pattern. The second argument is the result of fBpcre_study()fR, or NULL if
  271. the pattern was not studied. The third argument specifies which piece of
  272. information is required, while the fourth argument is a pointer to a variable
  273. to receive the data. The yield of the function is zero for success, or one of
  274. the following negative numbers:
  275.   PCRE_ERROR_NULL       the argument fIcodefR was NULL
  276.                         the argument fIwherefR was NULL
  277.   PCRE_ERROR_BADMAGIC   the "magic number" was not found
  278.   PCRE_ERROR_BADOPTION  the value of fIwhatfR was invalid
  279. Here is a typical call of fBpcre_fullinfo()fR, to obtain the length of the
  280. compiled pattern:
  281.   int rc;
  282.   unsigned long int length;
  283.   rc = pcre_fullinfo(
  284.     re,               /* result of pcre_compile() */
  285.     pe,               /* result of pcre_study(), or NULL */
  286.     PCRE_INFO_SIZE,   /* what is required */
  287.     &length);         /* where to put the data */
  288. The possible values for the third argument are defined in fBpcre.hfR, and are
  289. as follows:
  290.   PCRE_INFO_OPTIONS
  291. Return a copy of the options with which the pattern was compiled. The fourth
  292. argument should point to an fBunsigned long intfR variable. These option bits
  293. are those specified in the call to fBpcre_compile()fR, modified by any
  294. top-level option settings within the pattern itself, and with the PCRE_ANCHORED
  295. bit forcibly set if the form of the pattern implies that it can match only at
  296. the start of a subject string.
  297.   PCRE_INFO_SIZE
  298. Return the size of the compiled pattern, that is, the value that was passed as
  299. the argument to fBpcre_malloc()fR when PCRE was getting memory in which to
  300. place the compiled data. The fourth argument should point to a fBsize_tfR
  301. variable.
  302.   PCRE_INFO_CAPTURECOUNT
  303. Return the number of capturing subpatterns in the pattern. The fourth argument
  304. should point to an fbintfR variable.
  305.   PCRE_INFO_BACKREFMAX
  306. Return the number of the highest back reference in the pattern. The fourth
  307. argument should point to an fBintfR variable. Zero is returned if there are
  308. no back references.
  309.   PCRE_INFO_FIRSTCHAR
  310. Return information about the first character of any matched string, for a
  311. non-anchored pattern. If there is a fixed first character, e.g. from a pattern
  312. such as (cat|cow|coyote), it is returned in the integer pointed to by
  313. fIwherefR. Otherwise, if either
  314. (a) the pattern was compiled with the PCRE_MULTILINE option, and every branch
  315. starts with "^", or
  316. (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not set
  317. (if it were set, the pattern would be anchored),
  318. -1 is returned, indicating that the pattern matches only at the start of a
  319. subject string or after any "\n" within the string. Otherwise -2 is returned.
  320. For anchored patterns, -2 is returned.
  321.   PCRE_INFO_FIRSTTABLE
  322. If the pattern was studied, and this resulted in the construction of a 256-bit
  323. table indicating a fixed set of characters for the first character in any
  324. matching string, a pointer to the table is returned. Otherwise NULL is
  325. returned. The fourth argument should point to an fBunsigned char *fR
  326. variable.
  327.   PCRE_INFO_LASTLITERAL
  328. For a non-anchored pattern, return the value of the rightmost literal character
  329. which must exist in any matched string, other than at its start. The fourth
  330. argument should point to an fBintfR variable. If there is no such character,
  331. or if the pattern is anchored, -1 is returned. For example, for the pattern
  332. /a\d+z\d+/ the returned value is 'z'.
  333. The fBpcre_info()fR function is now obsolete because its interface is too
  334. restrictive to return all the available data about a compiled pattern. New
  335. programs should use fBpcre_fullinfo()fR instead. The yield of
  336. fBpcre_info()fR is the number of capturing subpatterns, or one of the
  337. following negative numbers:
  338.   PCRE_ERROR_NULL       the argument fIcodefR was NULL
  339.   PCRE_ERROR_BADMAGIC   the "magic number" was not found
  340. If the fIoptptrfR argument is not NULL, a copy of the options with which the
  341. pattern was compiled is placed in the integer it points to (see
  342. PCRE_INFO_OPTIONS above).
  343. If the pattern is not anchored and the fIfirstcharptrfR argument is not NULL,
  344. it is used to pass back information about the first character of any matched
  345. string (see PCRE_INFO_FIRSTCHAR above).
  346. .SH MATCHING A PATTERN
  347. The function fBpcre_exec()fR is called to match a subject string against a
  348. pre-compiled pattern, which is passed in the fIcodefR argument. If the
  349. pattern has been studied, the result of the study should be passed in the
  350. fIextrafR argument. Otherwise this must be NULL.
  351. Here is an example of a simple call to fBpcre_exec()fR:
  352.   int rc;
  353.   int ovector[30];
  354.   rc = pcre_exec(
  355.     re,             /* result of pcre_compile() */
  356.     NULL,           /* we didn't study the pattern */
  357.     "some string",  /* the subject string */
  358.     11,             /* the length of the subject string */
  359.     0,              /* start at offset 0 in the subject */
  360.     0,              /* default options */
  361.     ovector,        /* vector for substring information */
  362.     30);            /* number of elements in the vector */
  363. The PCRE_ANCHORED option can be passed in the fIoptionsfR argument, whose
  364. unused bits must be zero. However, if a pattern was compiled with
  365. PCRE_ANCHORED, or turned out to be anchored by virtue of its contents, it
  366. cannot be made unachored at matching time.
  367. There are also three further options that can be set only at matching time:
  368.   PCRE_NOTBOL
  369. The first character of the string is not the beginning of a line, so the
  370. circumflex metacharacter should not match before it. Setting this without
  371. PCRE_MULTILINE (at compile time) causes circumflex never to match.
  372.   PCRE_NOTEOL
  373. The end of the string is not the end of a line, so the dollar metacharacter
  374. should not match it nor (except in multiline mode) a newline immediately before
  375. it. Setting this without PCRE_MULTILINE (at compile time) causes dollar never
  376. to match.
  377.   PCRE_NOTEMPTY
  378. An empty string is not considered to be a valid match if this option is set. If
  379. there are alternatives in the pattern, they are tried. If all the alternatives
  380. match the empty string, the entire match fails. For example, if the pattern
  381.   a?b?
  382. is applied to a string not beginning with "a" or "b", it matches the empty
  383. string at the start of the subject. With PCRE_NOTEMPTY set, this match is not
  384. valid, so PCRE searches further into the string for occurrences of "a" or "b".
  385. Perl has no direct equivalent of PCRE_NOTEMPTY, but it does make a special case
  386. of a pattern match of the empty string within its fBsplit()fR function, and
  387. when using the /g modifier. It is possible to emulate Perl's behaviour after
  388. matching a null string by first trying the match again at the same offset with
  389. PCRE_NOTEMPTY set, and then if that fails by advancing the starting offset (see
  390. below) and trying an ordinary match again.
  391. The subject string is passed as a pointer in fIsubjectfR, a length in
  392. fIlengthfR, and a starting offset in fIstartoffsetfR. Unlike the pattern
  393. string, the subject may contain binary zero characters. When the starting
  394. offset is zero, the search for a match starts at the beginning of the subject,
  395. and this is by far the most common case.
  396. A non-zero starting offset is useful when searching for another match in the
  397. same subject by calling fBpcre_exec()fR again after a previous success.
  398. Setting fIstartoffsetfR differs from just passing over a shortened string and
  399. setting PCRE_NOTBOL in the case of a pattern that begins with any kind of
  400. lookbehind. For example, consider the pattern
  401.   \Biss\B
  402. which finds occurrences of "iss" in the middle of words. (\B matches only if
  403. the current position in the subject is not a word boundary.) When applied to
  404. the string "Mississipi" the first call to fBpcre_exec()fR finds the first
  405. occurrence. If fBpcre_exec()fR is called again with just the remainder of the
  406. subject, namely "issipi", it does not match, because \B is always false at the
  407. start of the subject, which is deemed to be a word boundary. However, if
  408. fBpcre_exec()fR is passed the entire string again, but with fIstartoffsetfR
  409. set to 4, it finds the second occurrence of "iss" because it is able to look
  410. behind the starting point to discover that it is preceded by a letter.
  411. If a non-zero starting offset is passed when the pattern is anchored, one
  412. attempt to match at the given offset is tried. This can only succeed if the
  413. pattern does not require the match to be at the start of the subject.
  414. In general, a pattern matches a certain portion of the subject, and in
  415. addition, further substrings from the subject may be picked out by parts of the
  416. pattern. Following the usage in Jeffrey Friedl's book, this is called
  417. "capturing" in what follows, and the phrase "capturing subpattern" is used for
  418. a fragment of a pattern that picks out a substring. PCRE supports several other
  419. kinds of parenthesized subpattern that do not cause substrings to be captured.
  420. Captured substrings are returned to the caller via a vector of integer offsets
  421. whose address is passed in fIovectorfR. The number of elements in the vector
  422. is passed in fIovecsizefR. The first two-thirds of the vector is used to pass
  423. back captured substrings, each substring using a pair of integers. The
  424. remaining third of the vector is used as workspace by fBpcre_exec()fR while
  425. matching capturing subpatterns, and is not available for passing back
  426. information. The length passed in fIovecsizefR should always be a multiple of
  427. three. If it is not, it is rounded down.
  428. When a match has been successful, information about captured substrings is
  429. returned in pairs of integers, starting at the beginning of fIovectorfR, and
  430. continuing up to two-thirds of its length at the most. The first element of a
  431. pair is set to the offset of the first character in a substring, and the second
  432. is set to the offset of the first character after the end of a substring. The
  433. first pair, fIovector[0]fR and fIovector[1]fR, identify the portion of the
  434. subject string matched by the entire pattern. The next pair is used for the
  435. first capturing subpattern, and so on. The value returned by fBpcre_exec()fR
  436. is the number of pairs that have been set. If there are no capturing
  437. subpatterns, the return value from a successful match is 1, indicating that
  438. just the first pair of offsets has been set.
  439. Some convenience functions are provided for extracting the captured substrings
  440. as separate strings. These are described in the following section.
  441. It is possible for an capturing subpattern number fIn+1fR to match some
  442. part of the subject when subpattern fInfR has not been used at all. For
  443. example, if the string "abc" is matched against the pattern (a|(z))(bc)
  444. subpatterns 1 and 3 are matched, but 2 is not. When this happens, both offset
  445. values corresponding to the unused subpattern are set to -1.
  446. If a capturing subpattern is matched repeatedly, it is the last portion of the
  447. string that it matched that gets returned.
  448. If the vector is too small to hold all the captured substrings, it is used as
  449. far as possible (up to two-thirds of its length), and the function returns a
  450. value of zero. In particular, if the substring offsets are not of interest,
  451. fBpcre_exec()fR may be called with fIovectorfR passed as NULL and
  452. fIovecsizefR as zero. However, if the pattern contains back references and
  453. the fIovectorfR isn't big enough to remember the related substrings, PCRE has
  454. to get additional memory for use during matching. Thus it is usually advisable
  455. to supply an fIovectorfR.
  456. Note that fBpcre_info()fR can be used to find out how many capturing
  457. subpatterns there are in a compiled pattern. The smallest size for
  458. fIovectorfR that will allow for fInfR captured substrings in addition to
  459. the offsets of the substring matched by the whole pattern is (fInfR+1)*3.
  460. If fBpcre_exec()fR fails, it returns a negative number. The following are
  461. defined in the header file:
  462.   PCRE_ERROR_NOMATCH        (-1)
  463. The subject string did not match the pattern.
  464.   PCRE_ERROR_NULL           (-2)
  465. Either fIcodefR or fIsubjectfR was passed as NULL, or fIovectorfR was
  466. NULL and fIovecsizefR was not zero.
  467.   PCRE_ERROR_BADOPTION      (-3)
  468. An unrecognized bit was set in the fIoptionsfR argument.
  469.   PCRE_ERROR_BADMAGIC       (-4)
  470. PCRE stores a 4-byte "magic number" at the start of the compiled code, to catch
  471. the case when it is passed a junk pointer. This is the error it gives when the
  472. magic number isn't present.
  473.   PCRE_ERROR_UNKNOWN_NODE   (-5)
  474. While running the pattern match, an unknown item was encountered in the
  475. compiled pattern. This error could be caused by a bug in PCRE or by overwriting
  476. of the compiled pattern.
  477.   PCRE_ERROR_NOMEMORY       (-6)
  478. If a pattern contains back references, but the fIovectorfR that is passed to
  479. fBpcre_exec()fR is not big enough to remember the referenced substrings, PCRE
  480. gets a block of memory at the start of matching to use for this purpose. If the
  481. call via fBpcre_malloc()fR fails, this error is given. The memory is freed at
  482. the end of matching.
  483. .SH EXTRACTING CAPTURED SUBSTRINGS
  484. Captured substrings can be accessed directly by using the offsets returned by
  485. fBpcre_exec()fR in fIovectorfR. For convenience, the functions
  486. fBpcre_copy_substring()fR, fBpcre_get_substring()fR, and
  487. fBpcre_get_substring_list()fR are provided for extracting captured substrings
  488. as new, separate, zero-terminated strings. A substring that contains a binary
  489. zero is correctly extracted and has a further zero added on the end, but the
  490. result does not, of course, function as a C string.
  491. The first three arguments are the same for all three functions: fIsubjectfR
  492. is the subject string which has just been successfully matched, fIovectorfR
  493. is a pointer to the vector of integer offsets that was passed to
  494. fBpcre_exec()fR, and fIstringcountfR is the number of substrings that
  495. were captured by the match, including the substring that matched the entire
  496. regular expression. This is the value returned by fBpcre_execfR if it
  497. is greater than zero. If fBpcre_exec()fR returned zero, indicating that it
  498. ran out of space in fIovectorfR, the value passed as fIstringcountfR should
  499. be the size of the vector divided by three.
  500. The functions fBpcre_copy_substring()fR and fBpcre_get_substring()fR
  501. extract a single substring, whose number is given as fIstringnumberfR. A
  502. value of zero extracts the substring that matched the entire pattern, while
  503. higher values extract the captured substrings. For fBpcre_copy_substring()fR,
  504. the string is placed in fIbufferfR, whose length is given by
  505. fIbuffersizefR, while for fBpcre_get_substring()fR a new block of memory is
  506. obtained via fBpcre_mallocfR, and its address is returned via
  507. fIstringptrfR. The yield of the function is the length of the string, not
  508. including the terminating zero, or one of
  509.   PCRE_ERROR_NOMEMORY       (-6)
  510. The buffer was too small for fBpcre_copy_substring()fR, or the attempt to get
  511. memory failed for fBpcre_get_substring()fR.
  512.   PCRE_ERROR_NOSUBSTRING    (-7)
  513. There is no substring whose number is fIstringnumberfR.
  514. The fBpcre_get_substring_list()fR function extracts all available substrings
  515. and builds a list of pointers to them. All this is done in a single block of
  516. memory which is obtained via fBpcre_mallocfR. The address of the memory block
  517. is returned via fIlistptrfR, which is also the start of the list of string
  518. pointers. The end of the list is marked by a NULL pointer. The yield of the
  519. function is zero if all went well, or
  520.   PCRE_ERROR_NOMEMORY       (-6)
  521. if the attempt to get the memory block failed.
  522. When any of these functions encounter a substring that is unset, which can
  523. happen when capturing subpattern number fIn+1fR matches some part of the
  524. subject, but subpattern fInfR has not been used at all, they return an empty
  525. string. This can be distinguished from a genuine zero-length substring by
  526. inspecting the appropriate offset in fIovectorfR, which is negative for unset
  527. substrings.
  528. The two convenience functions fBpcre_free_substring()fR and
  529. fBpcre_free_substring_list()fR can be used to free the memory returned by
  530. a previous call of fBpcre_get_substring()fR or
  531. fBpcre_get_substring_list()fR, respectively. They do nothing more than call
  532. the function pointed to by fBpcre_freefR, which of course could be called
  533. directly from a C program. However, PCRE is used in some situations where it is
  534. linked via a special interface to another programming language which cannot use
  535. fBpcre_freefR directly; it is for these cases that the functions are
  536. provided.
  537. .SH LIMITATIONS
  538. There are some size limitations in PCRE but it is hoped that they will never in
  539. practice be relevant.
  540. The maximum length of a compiled pattern is 65539 (sic) bytes.
  541. All values in repeating quantifiers must be less than 65536.
  542. There maximum number of capturing subpatterns is 65535.
  543. There is no limit to the number of non-capturing subpatterns, but the maximum
  544. depth of nesting of all kinds of parenthesized subpattern, including capturing
  545. subpatterns, assertions, and other types of subpattern, is 200.
  546. The maximum length of a subject string is the largest positive number that an
  547. integer variable can hold. However, PCRE uses recursion to handle subpatterns
  548. and indefinite repetition. This means that the available stack space may limit
  549. the size of a subject string that can be processed by certain patterns.
  550. .SH DIFFERENCES FROM PERL
  551. The differences described here are with respect to Perl 5.005.
  552. 1. By default, a whitespace character is any character that the C library
  553. function fBisspace()fR recognizes, though it is possible to compile PCRE with
  554. alternative character type tables. Normally fBisspace()fR matches space,
  555. formfeed, newline, carriage return, horizontal tab, and vertical tab. Perl 5
  556. no longer includes vertical tab in its set of whitespace characters. The \v
  557. escape that was in the Perl documentation for a long time was never in fact
  558. recognized. However, the character itself was treated as whitespace at least
  559. up to 5.002. In 5.004 and 5.005 it does not match \s.
  560. 2. PCRE does not allow repeat quantifiers on lookahead assertions. Perl permits
  561. them, but they do not mean what you might think. For example, (?!a){3} does
  562. not assert that the next three characters are not "a". It just asserts that the
  563. next character is not "a" three times.
  564. 3. Capturing subpatterns that occur inside negative lookahead assertions are
  565. counted, but their entries in the offsets vector are never set. Perl sets its
  566. numerical variables from any such patterns that are matched before the
  567. assertion fails to match something (thereby succeeding), but only if the
  568. negative lookahead assertion contains just one branch.
  569. 4. Though binary zero characters are supported in the subject string, they are
  570. not allowed in a pattern string because it is passed as a normal C string,
  571. terminated by zero. The escape sequence "\0" can be used in the pattern to
  572. represent a binary zero.
  573. 5. The following Perl escape sequences are not supported: \l, \u, \L, \U,
  574. \E, \Q. In fact these are implemented by Perl's general string-handling and
  575. are not part of its pattern matching engine.
  576. 6. The Perl \G assertion is not supported as it is not relevant to single
  577. pattern matches.
  578. 7. Fairly obviously, PCRE does not support the (?{code}) and (?p{code})
  579. constructions. However, there is some experimental support for recursive
  580. patterns using the non-Perl item (?R).
  581. 8. There are at the time of writing some oddities in Perl 5.005_02 concerned
  582. with the settings of captured strings when part of a pattern is repeated. For
  583. example, matching "aba" against the pattern /^(a(b)?)+$/ sets $2 to the value
  584. "b", but matching "aabbaa" against /^(aa(bb)?)+$/ leaves $2 unset. However, if
  585. the pattern is changed to /^(aa(b(b))?)+$/ then $2 (and $3) are set.
  586. In Perl 5.004 $2 is set in both cases, and that is also true of PCRE. If in the
  587. future Perl changes to a consistent state that is different, PCRE may change to
  588. follow.
  589. 9. Another as yet unresolved discrepancy is that in Perl 5.005_02 the pattern
  590. /^(a)?(?(1)a|b)+$/ matches the string "a", whereas in PCRE it does not.
  591. However, in both Perl and PCRE /^(a)?a/ matched against "a" leaves $1 unset.
  592. 10. PCRE provides some extensions to the Perl regular expression facilities:
  593. (a) Although lookbehind assertions must match fixed length strings, each
  594. alternative branch of a lookbehind assertion can match a different length of
  595. string. Perl 5.005 requires them all to have the same length.
  596. (b) If PCRE_DOLLAR_ENDONLY is set and PCRE_MULTILINE is not set, the $ meta-
  597. character matches only at the very end of the string.
  598. (c) If PCRE_EXTRA is set, a backslash followed by a letter with no special
  599. meaning is faulted.
  600. (d) If PCRE_UNGREEDY is set, the greediness of the repetition quantifiers is
  601. inverted, that is, by default they are not greedy, but if followed by a
  602. question mark they are.
  603. (e) PCRE_ANCHORED can be used to force a pattern to be tried only at the start
  604. of the subject.
  605. (f) The PCRE_NOTBOL, PCRE_NOTEOL, and PCRE_NOTEMPTY options for
  606. fBpcre_exec()fR have no Perl equivalents.
  607. (g) The (?R) construct allows for recursive pattern matching (Perl 5.6 can do
  608. this using the (?p{code}) construct, which PCRE cannot of course support.)
  609. .SH REGULAR EXPRESSION DETAILS
  610. The syntax and semantics of the regular expressions supported by PCRE are
  611. described below. Regular expressions are also described in the Perl
  612. documentation and in a number of other books, some of which have copious
  613. examples. Jeffrey Friedl's "Mastering Regular Expressions", published by
  614. O'Reilly (ISBN 1-56592-257), covers them in great detail.
  615. The description here is intended as reference documentation. The basic
  616. operation of PCRE is on strings of bytes. However, there is the beginnings of
  617. some support for UTF-8 character strings. To use this support you must
  618. configure PCRE to include it, and then call fBpcre_compile()fR with the
  619. PCRE_UTF8 option. How this affects the pattern matching is described in the
  620. final section of this document.
  621. A regular expression is a pattern that is matched against a subject string from
  622. left to right. Most characters stand for themselves in a pattern, and match the
  623. corresponding characters in the subject. As a trivial example, the pattern
  624.   The quick brown fox
  625. matches a portion of a subject string that is identical to itself. The power of
  626. regular expressions comes from the ability to include alternatives and
  627. repetitions in the pattern. These are encoded in the pattern by the use of
  628. fImeta-charactersfR, which do not stand for themselves but instead are
  629. interpreted in some special way.
  630. There are two different sets of meta-characters: those that are recognized
  631. anywhere in the pattern except within square brackets, and those that are
  632. recognized in square brackets. Outside square brackets, the meta-characters are
  633. as follows:
  634.   \      general escape character with several uses
  635.   ^      assert start of subject (or line, in multiline mode)
  636.   $      assert end of subject (or line, in multiline mode)
  637.   .      match any character except newline (by default)
  638.   [      start character class definition
  639.   |      start of alternative branch
  640.   (      start subpattern
  641.   )      end subpattern
  642.   ?      extends the meaning of (
  643.          also 0 or 1 quantifier
  644.          also quantifier minimizer
  645.   *      0 or more quantifier
  646.   +      1 or more quantifier
  647.   {      start min/max quantifier
  648. Part of a pattern that is in square brackets is called a "character class". In
  649. a character class the only meta-characters are:
  650.   \      general escape character
  651.   ^      negate the class, but only if the first character
  652.   -      indicates character range
  653.   ]      terminates the character class
  654. The following sections describe the use of each of the meta-characters.
  655. .SH BACKSLASH
  656. The backslash character has several uses. Firstly, if it is followed by a
  657. non-alphameric character, it takes away any special meaning that character may
  658. have. This use of backslash as an escape character applies both inside and
  659. outside character classes.
  660. For example, if you want to match a "*" character, you write "\*" in the
  661. pattern. This applies whether or not the following character would otherwise be
  662. interpreted as a meta-character, so it is always safe to precede a
  663. non-alphameric with "\" to specify that it stands for itself. In particular,
  664. if you want to match a backslash, you write "\\".
  665. If a pattern is compiled with the PCRE_EXTENDED option, whitespace in the
  666. pattern (other than in a character class) and characters between a "#" outside
  667. a character class and the next newline character are ignored. An escaping
  668. backslash can be used to include a whitespace or "#" character as part of the
  669. pattern.
  670. A second use of backslash provides a way of encoding non-printing characters
  671. in patterns in a visible manner. There is no restriction on the appearance of
  672. non-printing characters, apart from the binary zero that terminates a pattern,
  673. but when a pattern is being prepared by text editing, it is usually easier to
  674. use one of the following escape sequences than the binary character it
  675. represents:
  676.   \a     alarm, that is, the BEL character (hex 07)
  677.   \cx    "control-x", where x is any character
  678.   \e     escape (hex 1B)
  679.   \f     formfeed (hex 0C)
  680.   \n     newline (hex 0A)
  681.   \r     carriage return (hex 0D)
  682.   \t     tab (hex 09)
  683.   \xhh   character with hex code hh
  684.   \ddd   character with octal code ddd, or backreference
  685. The precise effect of "\cx" is as follows: if "x" is a lower case letter, it
  686. is converted to upper case. Then bit 6 of the character (hex 40) is inverted.
  687. Thus "\cz" becomes hex 1A, but "\c{" becomes hex 3B, while "\c;" becomes hex
  688. 7B.
  689. After "\x", up to two hexadecimal digits are read (letters can be in upper or
  690. lower case).
  691. After "\0" up to two further octal digits are read. In both cases, if there
  692. are fewer than two digits, just those that are present are used. Thus the
  693. sequence "\0\x\07" specifies two binary zeros followed by a BEL character.
  694. Make sure you supply two digits after the initial zero if the character that
  695. follows is itself an octal digit.
  696. The handling of a backslash followed by a digit other than 0 is complicated.
  697. Outside a character class, PCRE reads it and any following digits as a decimal
  698. number. If the number is less than 10, or if there have been at least that many
  699. previous capturing left parentheses in the expression, the entire sequence is
  700. taken as a fIback referencefR. A description of how this works is given
  701. later, following the discussion of parenthesized subpatterns.
  702. Inside a character class, or if the decimal number is greater than 9 and there
  703. have not been that many capturing subpatterns, PCRE re-reads up to three octal
  704. digits following the backslash, and generates a single byte from the least
  705. significant 8 bits of the value. Any subsequent digits stand for themselves.
  706. For example:
  707.   \040   is another way of writing a space
  708.   \40    is the same, provided there are fewer than 40
  709.             previous capturing subpatterns
  710.   \7     is always a back reference
  711.   \11    might be a back reference, or another way of
  712.             writing a tab
  713.   \011   is always a tab
  714.   \0113  is a tab followed by the character "3"
  715.   \113   is the character with octal code 113 (since there
  716.             can be no more than 99 back references)
  717.   \377   is a byte consisting entirely of 1 bits
  718.   \81    is either a back reference, or a binary zero
  719.             followed by the two characters "8" and "1"
  720. Note that octal values of 100 or greater must not be introduced by a leading
  721. zero, because no more than three octal digits are ever read.
  722. All the sequences that define a single byte value can be used both inside and
  723. outside character classes. In addition, inside a character class, the sequence
  724. "\b" is interpreted as the backspace character (hex 08). Outside a character
  725. class it has a different meaning (see below).
  726. The third use of backslash is for specifying generic character types:
  727.   \d     any decimal digit
  728.   \D     any character that is not a decimal digit
  729.   \s     any whitespace character
  730.   \S     any character that is not a whitespace character
  731.   \w     any "word" character
  732.   \W     any "non-word" character
  733. Each pair of escape sequences partitions the complete set of characters into
  734. two disjoint sets. Any given character matches one, and only one, of each pair.
  735. A "word" character is any letter or digit or the underscore character, that is,
  736. any character which can be part of a Perl "word". The definition of letters and
  737. digits is controlled by PCRE's character tables, and may vary if locale-
  738. specific matching is taking place (see "Locale support" above). For example, in
  739. the "fr" (French) locale, some character codes greater than 128 are used for
  740. accented letters, and these are matched by \w.
  741. These character type sequences can appear both inside and outside character
  742. classes. They each match one character of the appropriate type. If the current
  743. matching point is at the end of the subject string, all of them fail, since
  744. there is no character to match.
  745. The fourth use of backslash is for certain simple assertions. An assertion
  746. specifies a condition that has to be met at a particular point in a match,
  747. without consuming any characters from the subject string. The use of
  748. subpatterns for more complicated assertions is described below. The backslashed
  749. assertions are
  750.   \b     word boundary
  751.   \B     not a word boundary
  752.   \A     start of subject (independent of multiline mode)
  753.   \Z     end of subject or newline at end (independent of multiline mode)
  754.   \z     end of subject (independent of multiline mode)
  755. These assertions may not appear in character classes (but note that "\b" has a
  756. different meaning, namely the backspace character, inside a character class).
  757. A word boundary is a position in the subject string where the current character
  758. and the previous character do not both match \w or \W (i.e. one matches
  759. \w and the other matches \W), or the start or end of the string if the
  760. first or last character matches \w, respectively.
  761. The \A, \Z, and \z assertions differ from the traditional circumflex and
  762. dollar (described below) in that they only ever match at the very start and end
  763. of the subject string, whatever options are set. They are not affected by the
  764. PCRE_NOTBOL or PCRE_NOTEOL options. If the fIstartoffsetfR argument of
  765. fBpcre_exec()fR is non-zero, \A can never match. The difference between \Z
  766. and \z is that \Z matches before a newline that is the last character of the
  767. string as well as at the end of the string, whereas \z matches only at the
  768. end.
  769. .SH CIRCUMFLEX AND DOLLAR
  770. Outside a character class, in the default matching mode, the circumflex
  771. character is an assertion which is true only if the current matching point is
  772. at the start of the subject string. If the fIstartoffsetfR argument of
  773. fBpcre_exec()fR is non-zero, circumflex can never match. Inside a character
  774. class, circumflex has an entirely different meaning (see below).
  775. Circumflex need not be the first character of the pattern if a number of
  776. alternatives are involved, but it should be the first thing in each alternative
  777. in which it appears if the pattern is ever to match that branch. If all
  778. possible alternatives start with a circumflex, that is, if the pattern is
  779. constrained to match only at the start of the subject, it is said to be an
  780. "anchored" pattern. (There are also other constructs that can cause a pattern
  781. to be anchored.)
  782. A dollar character is an assertion which is true only if the current matching
  783. point is at the end of the subject string, or immediately before a newline
  784. character that is the last character in the string (by default). Dollar need
  785. not be the last character of the pattern if a number of alternatives are
  786. involved, but it should be the last item in any branch in which it appears.
  787. Dollar has no special meaning in a character class.
  788. The meaning of dollar can be changed so that it matches only at the very end of
  789. the string, by setting the PCRE_DOLLAR_ENDONLY option at compile or matching
  790. time. This does not affect the \Z assertion.
  791. The meanings of the circumflex and dollar characters are changed if the
  792. PCRE_MULTILINE option is set. When this is the case, they match immediately
  793. after and immediately before an internal "\n" character, respectively, in
  794. addition to matching at the start and end of the subject string. For example,
  795. the pattern /^abc$/ matches the subject string "def\nabc" in multiline mode,
  796. but not otherwise. Consequently, patterns that are anchored in single line mode
  797. because all branches start with "^" are not anchored in multiline mode, and a
  798. match for circumflex is possible when the fIstartoffsetfR argument of
  799. fBpcre_exec()fR is non-zero. The PCRE_DOLLAR_ENDONLY option is ignored if
  800. PCRE_MULTILINE is set.
  801. Note that the sequences \A, \Z, and \z can be used to match the start and
  802. end of the subject in both modes, and if all branches of a pattern start with
  803. \A it is always anchored, whether PCRE_MULTILINE is set or not.
  804. .SH FULL STOP (PERIOD, DOT)
  805. Outside a character class, a dot in the pattern matches any one character in
  806. the subject, including a non-printing character, but not (by default) newline.
  807. If the PCRE_DOTALL option is set, dots match newlines as well. The handling of
  808. dot is entirely independent of the handling of circumflex and dollar, the only
  809. relationship being that they both involve newline characters. Dot has no
  810. special meaning in a character class.
  811. .SH SQUARE BRACKETS
  812. An opening square bracket introduces a character class, terminated by a closing
  813. square bracket. A closing square bracket on its own is not special. If a
  814. closing square bracket is required as a member of the class, it should be the
  815. first data character in the class (after an initial circumflex, if present) or
  816. escaped with a backslash.
  817. A character class matches a single character in the subject; the character must
  818. be in the set of characters defined by the class, unless the first character in
  819. the class is a circumflex, in which case the subject character must not be in
  820. the set defined by the class. If a circumflex is actually required as a member
  821. of the class, ensure it is not the first character, or escape it with a
  822. backslash.
  823. For example, the character class [aeiou] matches any lower case vowel, while
  824. [^aeiou] matches any character that is not a lower case vowel. Note that a
  825. circumflex is just a convenient notation for specifying the characters which
  826. are in the class by enumerating those that are not. It is not an assertion: it
  827. still consumes a character from the subject string, and fails if the current
  828. pointer is at the end of the string.
  829. When caseless matching is set, any letters in a class represent both their
  830. upper case and lower case versions, so for example, a caseless [aeiou] matches
  831. "A" as well as "a", and a caseless [^aeiou] does not match "A", whereas a
  832. caseful version would.
  833. The newline character is never treated in any special way in character classes,
  834. whatever the setting of the PCRE_DOTALL or PCRE_MULTILINE options is. A class
  835. such as [^a] will always match a newline.
  836. The minus (hyphen) character can be used to specify a range of characters in a
  837. character class. For example, [d-m] matches any letter between d and m,
  838. inclusive. If a minus character is required in a class, it must be escaped with
  839. a backslash or appear in a position where it cannot be interpreted as
  840. indicating a range, typically as the first or last character in the class.
  841. It is not possible to have the literal character "]" as the end character of a
  842. range. A pattern such as [W-]46] is interpreted as a class of two characters
  843. ("W" and "-") followed by a literal string "46]", so it would match "W46]" or
  844. "-46]". However, if the "]" is escaped with a backslash it is interpreted as
  845. the end of range, so [W-\]46] is interpreted as a single class containing a
  846. range followed by two separate characters. The octal or hexadecimal
  847. representation of "]" can also be used to end a range.
  848. Ranges operate in ASCII collating sequence. They can also be used for
  849. characters specified numerically, for example [\000-\037]. If a range that
  850. includes letters is used when caseless matching is set, it matches the letters
  851. in either case. For example, [W-c] is equivalent to [][\^_`wxyzabc], matched
  852. caselessly, and if character tables for the "fr" locale are in use,
  853. [\xc8-\xcb] matches accented E characters in both cases.
  854. The character types \d, \D, \s, \S, \w, and \W may also appear in a
  855. character class, and add the characters that they match to the class. For
  856. example, [\dABCDEF] matches any hexadecimal digit. A circumflex can
  857. conveniently be used with the upper case character types to specify a more
  858. restricted set of characters than the matching lower case type. For example,
  859. the class [^\W_] matches any letter or digit, but not underscore.
  860. All non-alphameric characters other than \, -, ^ (at the start) and the
  861. terminating ] are non-special in character classes, but it does no harm if they
  862. are escaped.
  863. .SH POSIX CHARACTER CLASSES
  864. Perl 5.6 (not yet released at the time of writing) is going to support the
  865. POSIX notation for character classes, which uses names enclosed by [: and :]
  866. within the enclosing square brackets. PCRE supports this notation. For example,
  867.   [01[:alpha:]%]
  868. matches "0", "1", any alphabetic character, or "%". The supported class names
  869. are
  870.   alnum    letters and digits
  871.   alpha    letters
  872.   ascii    character codes 0 - 127
  873.   cntrl    control characters
  874.   digit    decimal digits (same as \d)
  875.   graph    printing characters, excluding space
  876.   lower    lower case letters
  877.   print    printing characters, including space
  878.   punct    printing characters, excluding letters and digits
  879.   space    white space (same as \s)
  880.   upper    upper case letters
  881.   word     "word" characters (same as \w)
  882.   xdigit   hexadecimal digits
  883. The names "ascii" and "word" are Perl extensions. Another Perl extension is
  884. negation, which is indicated by a ^ character after the colon. For example,
  885.   [12[:^digit:]]
  886. matches "1", "2", or any non-digit. PCRE (and Perl) also recognize the POSIX
  887. syntax [.ch.] and [=ch=] where "ch" is a "collating element", but these are not
  888. supported, and an error is given if they are encountered.
  889. .SH VERTICAL BAR
  890. Vertical bar characters are used to separate alternative patterns. For example,
  891. the pattern
  892.   gilbert|sullivan
  893. matches either "gilbert" or "sullivan". Any number of alternatives may appear,
  894. and an empty alternative is permitted (matching the empty string).
  895. The matching process tries each alternative in turn, from left to right,
  896. and the first one that succeeds is used. If the alternatives are within a
  897. subpattern (defined below), "succeeds" means matching the rest of the main
  898. pattern as well as the alternative in the subpattern.
  899. .SH INTERNAL OPTION SETTING
  900. The settings of PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and PCRE_EXTENDED
  901. can be changed from within the pattern by a sequence of Perl option letters
  902. enclosed between "(?" and ")". The option letters are
  903.   i  for PCRE_CASELESS
  904.   m  for PCRE_MULTILINE
  905.   s  for PCRE_DOTALL
  906.   x  for PCRE_EXTENDED
  907. For example, (?im) sets caseless, multiline matching. It is also possible to
  908. unset these options by preceding the letter with a hyphen, and a combined
  909. setting and unsetting such as (?im-sx), which sets PCRE_CASELESS and
  910. PCRE_MULTILINE while unsetting PCRE_DOTALL and PCRE_EXTENDED, is also
  911. permitted. If a letter appears both before and after the hyphen, the option is
  912. unset.
  913. The scope of these option changes depends on where in the pattern the setting
  914. occurs. For settings that are outside any subpattern (defined below), the
  915. effect is the same as if the options were set or unset at the start of
  916. matching. The following patterns all behave in exactly the same way:
  917.   (?i)abc
  918.   a(?i)bc
  919.   ab(?i)c
  920.   abc(?i)
  921. which in turn is the same as compiling the pattern abc with PCRE_CASELESS set.
  922. In other words, such "top level" settings apply to the whole pattern (unless
  923. there are other changes inside subpatterns). If there is more than one setting
  924. of the same option at top level, the rightmost setting is used.
  925. If an option change occurs inside a subpattern, the effect is different. This
  926. is a change of behaviour in Perl 5.005. An option change inside a subpattern
  927. affects only that part of the subpattern that follows it, so
  928.   (a(?i)b)c
  929. matches abc and aBc and no other strings (assuming PCRE_CASELESS is not used).
  930. By this means, options can be made to have different settings in different
  931. parts of the pattern. Any changes made in one alternative do carry on
  932. into subsequent branches within the same subpattern. For example,
  933.   (a(?i)b|c)
  934. matches "ab", "aB", "c", and "C", even though when matching "C" the first
  935. branch is abandoned before the option setting. This is because the effects of
  936. option settings happen at compile time. There would be some very weird
  937. behaviour otherwise.
  938. The PCRE-specific options PCRE_UNGREEDY and PCRE_EXTRA can be changed in the
  939. same way as the Perl-compatible options by using the characters U and X
  940. respectively. The (?X) flag setting is special in that it must always occur
  941. earlier in the pattern than any of the additional features it turns on, even
  942. when it is at top level. It is best put at the start.
  943. .SH SUBPATTERNS
  944. Subpatterns are delimited by parentheses (round brackets), which can be nested.
  945. Marking part of a pattern as a subpattern does two things:
  946. 1. It localizes a set of alternatives. For example, the pattern
  947.   cat(aract|erpillar|)
  948. matches one of the words "cat", "cataract", or "caterpillar". Without the
  949. parentheses, it would match "cataract", "erpillar" or the empty string.
  950. 2. It sets up the subpattern as a capturing subpattern (as defined above).
  951. When the whole pattern matches, that portion of the subject string that matched
  952. the subpattern is passed back to the caller via the fIovectorfR argument of
  953. fBpcre_exec()fR. Opening parentheses are counted from left to right (starting
  954. from 1) to obtain the numbers of the capturing subpatterns.
  955. For example, if the string "the red king" is matched against the pattern
  956.   the ((red|white) (king|queen))
  957. the captured substrings are "red king", "red", and "king", and are numbered 1,
  958. 2, and 3, respectively.
  959. The fact that plain parentheses fulfil two functions is not always helpful.
  960. There are often times when a grouping subpattern is required without a
  961. capturing requirement. If an opening parenthesis is followed by "?:", the
  962. subpattern does not do any capturing, and is not counted when computing the
  963. number of any subsequent capturing subpatterns. For example, if the string "the
  964. white queen" is matched against the pattern
  965.   the ((?:red|white) (king|queen))
  966. the captured substrings are "white queen" and "queen", and are numbered 1 and
  967. 2. The maximum number of captured substrings is 99, and the maximum number of
  968. all subpatterns, both capturing and non-capturing, is 200.
  969. As a convenient shorthand, if any option settings are required at the start of
  970. a non-capturing subpattern, the option letters may appear between the "?" and
  971. the ":". Thus the two patterns
  972.   (?i:saturday|sunday)
  973.   (?:(?i)saturday|sunday)
  974. match exactly the same set of strings. Because alternative branches are tried
  975. from left to right, and options are not reset until the end of the subpattern
  976. is reached, an option setting in one branch does affect subsequent branches, so
  977. the above patterns match "SUNDAY" as well as "Saturday".
  978. .SH REPETITION
  979. Repetition is specified by quantifiers, which can follow any of the following
  980. items:
  981.   a single character, possibly escaped
  982.   the . metacharacter
  983.   a character class
  984.   a back reference (see next section)
  985.   a parenthesized subpattern (unless it is an assertion - see below)
  986. The general repetition quantifier specifies a minimum and maximum number of
  987. permitted matches, by giving the two numbers in curly brackets (braces),
  988. separated by a comma. The numbers must be less than 65536, and the first must
  989. be less than or equal to the second. For example:
  990.   z{2,4}
  991. matches "zz", "zzz", or "zzzz". A closing brace on its own is not a special
  992. character. If the second number is omitted, but the comma is present, there is
  993. no upper limit; if the second number and the comma are both omitted, the
  994. quantifier specifies an exact number of required matches. Thus
  995.   [aeiou]{3,}
  996. matches at least 3 successive vowels, but may match many more, while
  997.   \d{8}
  998. matches exactly 8 digits. An opening curly bracket that appears in a position
  999. where a quantifier is not allowed, or one that does not match the syntax of a
  1000. quantifier, is taken as a literal character. For example, {,6} is not a
  1001. quantifier, but a literal string of four characters.
  1002. The quantifier {0} is permitted, causing the expression to behave as if the
  1003. previous item and the quantifier were not present.
  1004. For convenience (and historical compatibility) the three most common
  1005. quantifiers have single-character abbreviations:
  1006.   *    is equivalent to {0,}
  1007.   +    is equivalent to {1,}
  1008.   ?    is equivalent to {0,1}
  1009. It is possible to construct infinite loops by following a subpattern that can
  1010. match no characters with a quantifier that has no upper limit, for example:
  1011.   (a?)*
  1012. Earlier versions of Perl and PCRE used to give an error at compile time for
  1013. such patterns. However, because there are cases where this can be useful, such
  1014. patterns are now accepted, but if any repetition of the subpattern does in fact
  1015. match no characters, the loop is forcibly broken.
  1016. By default, the quantifiers are "greedy", that is, they match as much as
  1017. possible (up to the maximum number of permitted times), without causing the
  1018. rest of the pattern to fail. The classic example of where this gives problems
  1019. is in trying to match comments in C programs. These appear between the
  1020. sequences /* and */ and within the sequence, individual * and / characters may
  1021. appear. An attempt to match C comments by applying the pattern
  1022.   /\*.*\*/
  1023. to the string
  1024.   /* first command */  not comment  /* second comment */
  1025. fails, because it matches the entire string owing to the greediness of the .*
  1026. item.
  1027. However, if a quantifier is followed by a question mark, it ceases to be
  1028. greedy, and instead matches the minimum number of times possible, so the
  1029. pattern
  1030.   /\*.*?\*/
  1031. does the right thing with the C comments. The meaning of the various
  1032. quantifiers is not otherwise changed, just the preferred number of matches.
  1033. Do not confuse this use of question mark with its use as a quantifier in its
  1034. own right. Because it has two uses, it can sometimes appear doubled, as in
  1035.   \d??\d
  1036. which matches one digit by preference, but can match two if that is the only
  1037. way the rest of the pattern matches.
  1038. If the PCRE_UNGREEDY option is set (an option which is not available in Perl),
  1039. the quantifiers are not greedy by default, but individual ones can be made
  1040. greedy by following them with a question mark. In other words, it inverts the
  1041. default behaviour.
  1042. When a parenthesized subpattern is quantified with a minimum repeat count that
  1043. is greater than 1 or with a limited maximum, more store is required for the
  1044. compiled pattern, in proportion to the size of the minimum or maximum.
  1045. If a pattern starts with .* or .{0,} and the PCRE_DOTALL option (equivalent
  1046. to Perl's /s) is set, thus allowing the . to match newlines, the pattern is
  1047. implicitly anchored, because whatever follows will be tried against every
  1048. character position in the subject string, so there is no point in retrying the
  1049. overall match at any position after the first. PCRE treats such a pattern as
  1050. though it were preceded by \A. In cases where it is known that the subject
  1051. string contains no newlines, it is worth setting PCRE_DOTALL when the pattern
  1052. begins with .* in order to obtain this optimization, or alternatively using ^
  1053. to indicate anchoring explicitly.
  1054. When a capturing subpattern is repeated, the value captured is the substring
  1055. that matched the final iteration. For example, after
  1056.   (tweedle[dume]{3}\s*)+
  1057. has matched "tweedledum tweedledee" the value of the captured substring is
  1058. "tweedledee". However, if there are nested capturing subpatterns, the
  1059. corresponding captured values may have been set in previous iterations. For
  1060. example, after
  1061.   /(a|(b))+/
  1062. matches "aba" the value of the second captured substring is "b".
  1063. .SH BACK REFERENCES
  1064. Outside a character class, a backslash followed by a digit greater than 0 (and
  1065. possibly further digits) is a back reference to a capturing subpattern earlier
  1066. (i.e. to its left) in the pattern, provided there have been that many previous
  1067. capturing left parentheses.
  1068. However, if the decimal number following the backslash is less than 10, it is
  1069. always taken as a back reference, and causes an error only if there are not
  1070. that many capturing left parentheses in the entire pattern. In other words, the
  1071. parentheses that are referenced need not be to the left of the reference for
  1072. numbers less than 10. See the section entitled "Backslash" above for further
  1073. details of the handling of digits following a backslash.
  1074. A back reference matches whatever actually matched the capturing subpattern in
  1075. the current subject string, rather than anything matching the subpattern
  1076. itself. So the pattern
  1077.   (sens|respons)e and \1ibility
  1078. matches "sense and sensibility" and "response and responsibility", but not
  1079. "sense and responsibility". If caseful matching is in force at the time of the
  1080. back reference, the case of letters is relevant. For example,
  1081.   ((?i)rah)\s+\1
  1082. matches "rah rah" and "RAH RAH", but not "RAH rah", even though the original
  1083. capturing subpattern is matched caselessly.
  1084. There may be more than one back reference to the same subpattern. If a
  1085. subpattern has not actually been used in a particular match, any back
  1086. references to it always fail. For example, the pattern
  1087.   (a|(bc))\2
  1088. always fails if it starts to match "a" rather than "bc". Because there may be
  1089. up to 99 back references, all digits following the backslash are taken
  1090. as part of a potential back reference number. If the pattern continues with a
  1091. digit character, some delimiter must be used to terminate the back reference.
  1092. If the PCRE_EXTENDED option is set, this can be whitespace. Otherwise an empty
  1093. comment can be used.
  1094. A back reference that occurs inside the parentheses to which it refers fails
  1095. when the subpattern is first used, so, for example, (a\1) never matches.
  1096. However, such references can be useful inside repeated subpatterns. For
  1097. example, the pattern
  1098.   (a|b\1)+
  1099. matches any number of "a"s and also "aba", "ababbaa" etc. At each iteration of
  1100. the subpattern, the back reference matches the character string corresponding
  1101. to the previous iteration. In order for this to work, the pattern must be such
  1102. that the first iteration does not need to match the back reference. This can be
  1103. done using alternation, as in the example above, or by a quantifier with a
  1104. minimum of zero.
  1105. .SH ASSERTIONS
  1106. An assertion is a test on the characters following or preceding the current
  1107. matching point that does not actually consume any characters. The simple
  1108. assertions coded as \b, \B, \A, \Z, \z, ^ and $ are described above. More
  1109. complicated assertions are coded as subpatterns. There are two kinds: those
  1110. that look ahead of the current position in the subject string, and those that
  1111. look behind it.
  1112. An assertion subpattern is matched in the normal way, except that it does not
  1113. cause the current matching position to be changed. Lookahead assertions start
  1114. with (?= for positive assertions and (?! for negative assertions. For example,
  1115.   \w+(?=;)
  1116. matches a word followed by a semicolon, but does not include the semicolon in
  1117. the match, and
  1118.   foo(?!bar)
  1119. matches any occurrence of "foo" that is not followed by "bar". Note that the
  1120. apparently similar pattern
  1121.   (?!foo)bar
  1122. does not find an occurrence of "bar" that is preceded by something other than
  1123. "foo"; it finds any occurrence of "bar" whatsoever, because the assertion
  1124. (?!foo) is always true when the next three characters are "bar". A
  1125. lookbehind assertion is needed to achieve this effect.
  1126. Lookbehind assertions start with (?<= for positive assertions and (?<! for
  1127. negative assertions. For example,
  1128.   (?<!foo)bar
  1129. does find an occurrence of "bar" that is not preceded by "foo". The contents of
  1130. a lookbehind assertion are restricted such that all the strings it matches must
  1131. have a fixed length. However, if there are several alternatives, they do not
  1132. all have to have the same fixed length. Thus
  1133.   (?<=bullock|donkey)
  1134. is permitted, but
  1135.   (?<!dogs?|cats?)
  1136. causes an error at compile time. Branches that match different length strings
  1137. are permitted only at the top level of a lookbehind assertion. This is an
  1138. extension compared with Perl 5.005, which requires all branches to match the
  1139. same length of string. An assertion such as
  1140.   (?<=ab(c|de))
  1141. is not permitted, because its single top-level branch can match two different
  1142. lengths, but it is acceptable if rewritten to use two top-level branches:
  1143.   (?<=abc|abde)
  1144. The implementation of lookbehind assertions is, for each alternative, to
  1145. temporarily move the current position back by the fixed width and then try to
  1146. match. If there are insufficient characters before the current position, the
  1147. match is deemed to fail. Lookbehinds in conjunction with once-only subpatterns
  1148. can be particularly useful for matching at the ends of strings; an example is
  1149. given at the end of the section on once-only subpatterns.
  1150. Several assertions (of any sort) may occur in succession. For example,
  1151.   (?<=\d{3})(?<!999)foo
  1152. matches "foo" preceded by three digits that are not "999". Notice that each of
  1153. the assertions is applied independently at the same point in the subject
  1154. string. First there is a check that the previous three characters are all
  1155. digits, and then there is a check that the same three characters are not "999".
  1156. This pattern does fInotfR match "foo" preceded by six characters, the first
  1157. of which are digits and the last three of which are not "999". For example, it
  1158. doesn't match "123abcfoo". A pattern to do that is
  1159.   (?<=\d{3}...)(?<!999)foo
  1160. This time the first assertion looks at the preceding six characters, checking
  1161. that the first three are digits, and then the second assertion checks that the
  1162. preceding three characters are not "999".
  1163. Assertions can be nested in any combination. For example,
  1164.   (?<=(?<!foo)bar)baz
  1165. matches an occurrence of "baz" that is preceded by "bar" which in turn is not
  1166. preceded by "foo", while
  1167.   (?<=\d{3}(?!999)...)foo
  1168. is another pattern which matches "foo" preceded by three digits and any three
  1169. characters that are not "999".
  1170. Assertion subpatterns are not capturing subpatterns, and may not be repeated,
  1171. because it makes no sense to assert the same thing several times. If any kind
  1172. of assertion contains capturing subpatterns within it, these are counted for
  1173. the purposes of numbering the capturing subpatterns in the whole pattern.
  1174. However, substring capturing is carried out only for positive assertions,
  1175. because it does not make sense for negative assertions.
  1176. Assertions count towards the maximum of 200 parenthesized subpatterns.
  1177. .SH ONCE-ONLY SUBPATTERNS
  1178. With both maximizing and minimizing repetition, failure of what follows
  1179. normally causes the repeated item to be re-evaluated to see if a different
  1180. number of repeats allows the rest of the pattern to match. Sometimes it is
  1181. useful to prevent this, either to change the nature of the match, or to cause
  1182. it fail earlier than it otherwise might, when the author of the pattern knows
  1183. there is no point in carrying on.
  1184. Consider, for example, the pattern \d+foo when applied to the subject line
  1185.   123456bar
  1186. After matching all 6 digits and then failing to match "foo", the normal
  1187. action of the matcher is to try again with only 5 digits matching the \d+
  1188. item, and then with 4, and so on, before ultimately failing. Once-only
  1189. subpatterns provide the means for specifying that once a portion of the pattern
  1190. has matched, it is not to be re-evaluated in this way, so the matcher would
  1191. give up immediately on failing to match "foo" the first time. The notation is
  1192. another kind of special parenthesis, starting with (?> as in this example:
  1193.   (?>\d+)bar
  1194. This kind of parenthesis "locks up" the  part of the pattern it contains once
  1195. it has matched, and a failure further into the pattern is prevented from
  1196. backtracking into it. Backtracking past it to previous items, however, works as
  1197. normal.
  1198. An alternative description is that a subpattern of this type matches the string
  1199. of characters that an identical standalone pattern would match, if anchored at
  1200. the current point in the subject string.
  1201. Once-only subpatterns are not capturing subpatterns. Simple cases such as the
  1202. above example can be thought of as a maximizing repeat that must swallow
  1203. everything it can. So, while both \d+ and \d+? are prepared to adjust the
  1204. number of digits they match in order to make the rest of the pattern match,
  1205. (?>\d+) can only match an entire sequence of digits.
  1206. This construction can of course contain arbitrarily complicated subpatterns,
  1207. and it can be nested.
  1208. Once-only subpatterns can be used in conjunction with lookbehind assertions to
  1209. specify efficient matching at the end of the subject string. Consider a simple
  1210. pattern such as
  1211.   abcd$
  1212. when applied to a long string which does not match. Because matching proceeds
  1213. from left to right, PCRE will look for each "a" in the subject and then see if
  1214. what follows matches the rest of the pattern. If the pattern is specified as
  1215.   ^.*abcd$
  1216. the initial .* matches the entire string at first, but when this fails (because
  1217. there is no following "a"), it backtracks to match all but the last character,
  1218. then all but the last two characters, and so on. Once again the search for "a"
  1219. covers the entire string, from right to left, so we are no better off. However,
  1220. if the pattern is written as
  1221.   ^(?>.*)(?<=abcd)
  1222. there can be no backtracking for the .* item; it can match only the entire
  1223. string. The subsequent lookbehind assertion does a single test on the last four
  1224. characters. If it fails, the match fails immediately. For long strings, this
  1225. approach makes a significant difference to the processing time.
  1226. When a pattern contains an unlimited repeat inside a subpattern that can itself
  1227. be repeated an unlimited number of times, the use of a once-only subpattern is
  1228. the only way to avoid some failing matches taking a very long time indeed.
  1229. The pattern
  1230.   (\D+|<\d+>)*[!?]
  1231. matches an unlimited number of substrings that either consist of non-digits, or
  1232. digits enclosed in <>, followed by either ! or ?. When it matches, it runs
  1233. quickly. However, if it is applied to
  1234.   aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
  1235. it takes a long time before reporting failure. This is because the string can
  1236. be divided between the two repeats in a large number of ways, and all have to
  1237. be tried. (The example used [!?] rather than a single character at the end,
  1238. because both PCRE and Perl have an optimization that allows for fast failure
  1239. when a single character is used. They remember the last single character that
  1240. is required for a match, and fail early if it is not present in the string.)
  1241. If the pattern is changed to
  1242.   ((?>\D+)|<\d+>)*[!?]
  1243. sequences of non-digits cannot be broken, and failure happens quickly.
  1244. .SH CONDITIONAL SUBPATTERNS
  1245. It is possible to cause the matching process to obey a subpattern
  1246. conditionally or to choose between two alternative subpatterns, depending on
  1247. the result of an assertion, or whether a previous capturing subpattern matched
  1248. or not. The two possible forms of conditional subpattern are
  1249.   (?(condition)yes-pattern)
  1250.   (?(condition)yes-pattern|no-pattern)
  1251. If the condition is satisfied, the yes-pattern is used; otherwise the
  1252. no-pattern (if present) is used. If there are more than two alternatives in the
  1253. subpattern, a compile-time error occurs.
  1254. There are two kinds of condition. If the text between the parentheses consists
  1255. of a sequence of digits, the condition is satisfied if the capturing subpattern
  1256. of that number has previously matched. The number must be greater than zero.
  1257. Consider the following pattern, which contains non-significant white space to
  1258. make it more readable (assume the PCRE_EXTENDED option) and to divide it into
  1259. three parts for ease of discussion:
  1260.   ( \( )?    [^()]+    (?(1) \) )
  1261. The first part matches an optional opening parenthesis, and if that
  1262. character is present, sets it as the first captured substring. The second part
  1263. matches one or more characters that are not parentheses. The third part is a
  1264. conditional subpattern that tests whether the first set of parentheses matched
  1265. or not. If they did, that is, if subject started with an opening parenthesis,
  1266. the condition is true, and so the yes-pattern is executed and a closing
  1267. parenthesis is required. Otherwise, since no-pattern is not present, the
  1268. subpattern matches nothing. In other words, this pattern matches a sequence of
  1269. non-parentheses, optionally enclosed in parentheses.
  1270. If the condition is not a sequence of digits, it must be an assertion. This may
  1271. be a positive or negative lookahead or lookbehind assertion. Consider this
  1272. pattern, again containing non-significant white space, and with the two
  1273. alternatives on the second line:
  1274.   (?(?=[^a-z]*[a-z])
  1275.   \d{2}-[a-z]{3}-\d{2}  |  \d{2}-\d{2}-\d{2} )
  1276. The condition is a positive lookahead assertion that matches an optional
  1277. sequence of non-letters followed by a letter. In other words, it tests for the
  1278. presence of at least one letter in the subject. If a letter is found, the
  1279. subject is matched against the first alternative; otherwise it is matched
  1280. against the second. This pattern matches strings in one of the two forms
  1281. dd-aaa-dd or dd-dd-dd, where aaa are letters and dd are digits.
  1282. .SH COMMENTS
  1283. The sequence (?# marks the start of a comment which continues up to the next
  1284. closing parenthesis. Nested parentheses are not permitted. The characters
  1285. that make up a comment play no part in the pattern matching at all.
  1286. If the PCRE_EXTENDED option is set, an unescaped # character outside a
  1287. character class introduces a comment that continues up to the next newline
  1288. character in the pattern.
  1289. .SH RECURSIVE PATTERNS
  1290. Consider the problem of matching a string in parentheses, allowing for
  1291. unlimited nested parentheses. Without the use of recursion, the best that can
  1292. be done is to use a pattern that matches up to some fixed depth of nesting. It
  1293. is not possible to handle an arbitrary nesting depth. Perl 5.6 has provided an
  1294. experimental facility that allows regular expressions to recurse (amongst other
  1295. things). It does this by interpolating Perl code in the expression at run time,
  1296. and the code can refer to the expression itself. A Perl pattern to solve the
  1297. parentheses problem can be created like this:
  1298.   $re = qr{\( (?: (?>[^()]+) | (?p{$re}) )* \)}x;
  1299. The (?p{...}) item interpolates Perl code at run time, and in this case refers
  1300. recursively to the pattern in which it appears. Obviously, PCRE cannot support
  1301. the interpolation of Perl code. Instead, the special item (?R) is provided for
  1302. the specific case of recursion. This PCRE pattern solves the parentheses
  1303. problem (assume the PCRE_EXTENDED option is set so that white space is
  1304. ignored):
  1305.   \( ( (?>[^()]+) | (?R) )* \)
  1306. First it matches an opening parenthesis. Then it matches any number of
  1307. substrings which can either be a sequence of non-parentheses, or a recursive
  1308. match of the pattern itself (i.e. a correctly parenthesized substring). Finally
  1309. there is a closing parenthesis.
  1310. This particular example pattern contains nested unlimited repeats, and so the
  1311. use of a once-only subpattern for matching strings of non-parentheses is
  1312. important when applying the pattern to strings that do not match. For example,
  1313. when it is applied to
  1314.   (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa()
  1315. it yields "no match" quickly. However, if a once-only subpattern is not used,
  1316. the match runs for a very long time indeed because there are so many different
  1317. ways the + and * repeats can carve up the subject, and all have to be tested
  1318. before failure can be reported.
  1319. The values set for any capturing subpatterns are those from the outermost level
  1320. of the recursion at which the subpattern value is set. If the pattern above is
  1321. matched against
  1322.   (ab(cd)ef)
  1323. the value for the capturing parentheses is "ef", which is the last value taken
  1324. on at the top level. If additional parentheses are added, giving
  1325.   \( ( ( (?>[^()]+) | (?R) )* ) \)
  1326.      ^                        ^
  1327.      ^                        ^
  1328. the string they capture is "ab(cd)ef", the contents of the top level
  1329. parentheses. If there are more than 15 capturing parentheses in a pattern, PCRE
  1330. has to obtain extra memory to store data during a recursion, which it does by
  1331. using fBpcre_mallocfR, freeing it via fBpcre_freefR afterwards. If no
  1332. memory can be obtained, it saves data for the first 15 capturing parentheses
  1333. only, as there is no way to give an out-of-memory error from within a
  1334. recursion.
  1335. .SH PERFORMANCE
  1336. Certain items that may appear in patterns are more efficient than others. It is
  1337. more efficient to use a character class like [aeiou] than a set of alternatives
  1338. such as (a|e|i|o|u). In general, the simplest construction that provides the
  1339. required behaviour is usually the most efficient. Jeffrey Friedl's book
  1340. contains a lot of discussion about optimizing regular expressions for efficient
  1341. performance.
  1342. When a pattern begins with .* and the PCRE_DOTALL option is set, the pattern is
  1343. implicitly anchored by PCRE, since it can match only at the start of a subject
  1344. string. However, if PCRE_DOTALL is not set, PCRE cannot make this optimization,
  1345. because the . metacharacter does not then match a newline, and if the subject
  1346. string contains newlines, the pattern may match from the character immediately
  1347. following one of them instead of from the very start. For example, the pattern
  1348.   (.*) second
  1349. matches the subject "first\nand second" (where \n stands for a newline
  1350. character) with the first captured substring being "and". In order to do this,
  1351. PCRE has to retry the match starting after every newline in the subject.
  1352. If you are using such a pattern with subject strings that do not contain
  1353. newlines, the best performance is obtained by setting PCRE_DOTALL, or starting
  1354. the pattern with ^.* to indicate explicit anchoring. That saves PCRE from
  1355. having to scan along the subject looking for a newline to restart at.
  1356. Beware of patterns that contain nested indefinite repeats. These can take a
  1357. long time to run when applied to a string that does not match. Consider the
  1358. pattern fragment
  1359.   (a+)*
  1360. This can match "aaaa" in 33 different ways, and this number increases very
  1361. rapidly as the string gets longer. (The * repeat can match 0, 1, 2, 3, or 4
  1362. times, and for each of those cases other than 0, the + repeats can match
  1363. different numbers of times.) When the remainder of the pattern is such that the
  1364. entire match is going to fail, PCRE has in principle to try every possible
  1365. variation, and this can take an extremely long time.
  1366. An optimization catches some of the more simple cases such as
  1367.   (a+)*b
  1368. where a literal character follows. Before embarking on the standard matching
  1369. procedure, PCRE checks that there is a "b" later in the subject string, and if
  1370. there is not, it fails the match immediately. However, when there is no
  1371. following literal this optimization cannot be used. You can see the difference
  1372. by comparing the behaviour of
  1373.   (a+)*\d
  1374. with the pattern above. The former gives a failure almost instantly when
  1375. applied to a whole line of "a" characters, whereas the latter takes an
  1376. appreciable time with strings longer than about 20 characters.
  1377. .SH UTF-8 SUPPORT
  1378. Starting at release 3.3, PCRE has some support for character strings encoded
  1379. in the UTF-8 format. This is incomplete, and is regarded as experimental. In
  1380. order to use it, you must configure PCRE to include UTF-8 support in the code,
  1381. and, in addition, you must call fBpcre_compile()fR with the PCRE_UTF8 option
  1382. flag. When you do this, both the pattern and any subject strings that are
  1383. matched against it are treated as UTF-8 strings instead of just strings of
  1384. bytes, but only in the cases that are mentioned below.
  1385. If you compile PCRE with UTF-8 support, but do not use it at run time, the
  1386. library will be a bit bigger, but the additional run time overhead is limited
  1387. to testing the PCRE_UTF8 flag in several places, so should not be very large.
  1388. PCRE assumes that the strings it is given contain valid UTF-8 codes. It does
  1389. not diagnose invalid UTF-8 strings. If you pass invalid UTF-8 strings to PCRE,
  1390. the results are undefined.
  1391. Running with PCRE_UTF8 set causes these changes in the way PCRE works:
  1392. 1. In a pattern, the escape sequence \x{...}, where the contents of the braces
  1393. is a string of hexadecimal digits, is interpreted as a UTF-8 character whose
  1394. code number is the given hexadecimal number, for example: \x{1234}. This
  1395. inserts from one to six literal bytes into the pattern, using the UTF-8
  1396. encoding. If a non-hexadecimal digit appears between the braces, the item is
  1397. not recognized.
  1398. 2. The original hexadecimal escape sequence, \xhh, generates a two-byte UTF-8
  1399. character if its value is greater than 127.
  1400. 3. Repeat quantifiers are NOT correctly handled if they follow a multibyte
  1401. character. For example, \x{100}* and \xc3+ do not work. If you want to
  1402. repeat such characters, you must enclose them in non-capturing parentheses,
  1403. for example (?:\x{100}), at present.
  1404. 4. The dot metacharacter matches one UTF-8 character instead of a single byte.
  1405. 5. Unlike literal UTF-8 characters, the dot metacharacter followed by a
  1406. repeat quantifier does operate correctly on UTF-8 characters instead of
  1407. single bytes.
  1408. 4. Although the \x{...} escape is permitted in a character class, characters
  1409. whose values are greater than 255 cannot be included in a class.
  1410. 5. A class is matched against a UTF-8 character instead of just a single byte,
  1411. but it can match only characters whose values are less than 256. Characters
  1412. with greater values always fail to match a class.
  1413. 6. Repeated classes work correctly on multiple characters.
  1414. 7. Classes containing just a single character whose value is greater than 127
  1415. (but less than 256), for example, [\x80] or [^\x{93}], do not work because
  1416. these are optimized into single byte matches. In the first case, of course,
  1417. the class brackets are just redundant.
  1418. 8. Lookbehind assertions move backwards in the subject by a fixed number of
  1419. characters instead of a fixed number of bytes. Simple cases have been tested
  1420. to work correctly, but there may be hidden gotchas herein.
  1421. 9. The character types such as \d and \w do not work correctly with UTF-8
  1422. characters. They continue to test a single byte.
  1423. 10. Anything not explicitly mentioned here continues to work in bytes rather
  1424. than in characters.
  1425. The following UTF-8 features of Perl 5.6 are not implemented:
  1426. 1. The escape sequence \C to match a single byte.
  1427. 2. The use of Unicode tables and properties and escapes \p, \P, and \X.
  1428. .SH SAMPLE PROGRAM
  1429. The code below is a simple, complete demonstration program, to get you started
  1430. with using PCRE. This code is also supplied in the file fIpcredemo.cfR in the
  1431. PCRE distribution.
  1432. The program compiles the regular expression that is its first argument, and
  1433. matches it against the subject string in its second argument. No options are
  1434. set, and default character tables are used. If matching succeeds, the program
  1435. outputs the portion of the subject that matched, together with the contents of
  1436. any captured substrings.
  1437. On a Unix system that has PCRE installed in fI/usr/localfR, you can compile
  1438. the demonstration program using a command like this:
  1439.   gcc -o pcredemo pcredemo.c -I/usr/local/include -L/usr/local/lib -lpcre
  1440. Then you can run simple tests like this:
  1441.   ./pcredemo 'cat|dog' 'the cat sat on the mat'
  1442. Note that there is a much more comprehensive test program, called
  1443. fBpcretestfR, which supports many more facilities for testing regular
  1444. expressions. The fBpcredemofR program is provided as a simple coding example.
  1445. On some operating systems (e.g. Solaris) you may get an error like this when
  1446. you try to run fBpcredemofR:
  1447.   ld.so.1: a.out: fatal: libpcre.so.0: open failed: No such file or directory
  1448. This is caused by the way shared library support works on those systems. You
  1449. need to add
  1450.   -R/usr/local/lib
  1451. to the compile command to get round this problem. Here's the code:
  1452.   #include <stdio.h>
  1453.   #include <string.h>
  1454.   #include <pcre.h>
  1455.   #define OVECCOUNT 30    /* should be a multiple of 3 */
  1456.   int main(int argc, char **argv)
  1457.   {
  1458.   pcre *re;
  1459.   const char *error;
  1460.   int erroffset;
  1461.   int ovector[OVECCOUNT];
  1462.   int rc, i;
  1463.   if (argc != 3)
  1464.     {
  1465.     printf("Two arguments required: a regex and a "
  1466.       "subject string\n");
  1467.     return 1;
  1468.     }
  1469.   /* Compile the regular expression in the first argument */
  1470.   re = pcre_compile(
  1471.     argv[1],     /* the pattern */
  1472.     0,           /* default options */
  1473.     &error,      /* for error message */
  1474.     &erroffset,  /* for error offset */
  1475.     NULL);       /* use default character tables */
  1476.   /* Compilation failed: print the error message and exit */
  1477.   if (re == NULL)
  1478.     {
  1479.     printf("PCRE compilation failed at offset %d: %s\n",
  1480.       erroffset, error);
  1481.     return 1;
  1482.     }
  1483.   /* Compilation succeeded: match the subject in the second
  1484.      argument */
  1485.   rc = pcre_exec(
  1486.     re,          /* the compiled pattern */
  1487.     NULL,        /* we didn't study the pattern */
  1488.     argv[2],     /* the subject string */
  1489.     (int)strlen(argv[2]), /* the length of the subject */
  1490.     0,           /* start at offset 0 in the subject */
  1491.     0,           /* default options */
  1492.     ovector,     /* vector for substring information */
  1493.     OVECCOUNT);  /* number of elements in the vector */
  1494.   /* Matching failed: handle error cases */
  1495.   if (rc < 0)
  1496.     {
  1497.     switch(rc)
  1498.       {
  1499.       case PCRE_ERROR_NOMATCH: printf("No match\n"); break;
  1500.       /*
  1501.       Handle other special cases if you like
  1502.       */
  1503.       default: printf("Matching error %d\n", rc); break;
  1504.       }
  1505.     return 1;
  1506.     }
  1507.   /* Match succeded */
  1508.   printf("Match succeeded\n");
  1509.   /* The output vector wasn't big enough */
  1510.   if (rc == 0)
  1511.     {
  1512.     rc = OVECCOUNT/3;
  1513.     printf("ovector only has room for %d captured "
  1514.       substrings\n", rc - 1);
  1515.     }
  1516.   /* Show substrings stored in the output vector */
  1517.   for (i = 0; i < rc; i++)
  1518.     {
  1519.     char *substring_start = argv[2] + ovector[2*i];
  1520.     int substring_length = ovector[2*i+1] - ovector[2*i];
  1521.     printf("%2d: %.*s\n", i, substring_length,
  1522.       substring_start);
  1523.     }
  1524.   return 0;
  1525.   }
  1526. .SH AUTHOR
  1527. Philip Hazel <ph10@cam.ac.uk>
  1528. .br
  1529. University Computing Service,
  1530. .br
  1531. New Museums Site,
  1532. .br
  1533. Cambridge CB2 3QG, England.
  1534. .br
  1535. Phone: +44 1223 334714
  1536. Last updated: 15 August 2001
  1537. .br
  1538. Copyright (c) 1997-2001 University of Cambridge.