github的一些开源项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2213 lines
95 KiB

  1. <html>
  2. <head>
  3. <title>pcre2test specification</title>
  4. </head>
  5. <body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB">
  6. <h1>pcre2test man page</h1>
  7. <p>
  8. Return to the <a href="index.html">PCRE2 index page</a>.
  9. </p>
  10. <p>
  11. This page is part of the PCRE2 HTML documentation. It was generated
  12. automatically from the original man page. If there is any nonsense in it,
  13. please consult the man page, in case the conversion went wrong.
  14. <br>
  15. <ul>
  16. <li><a name="TOC1" href="#SEC1">SYNOPSIS</a>
  17. <li><a name="TOC2" href="#SEC2">PCRE2's 8-BIT, 16-BIT AND 32-BIT LIBRARIES</a>
  18. <li><a name="TOC3" href="#SEC3">INPUT ENCODING</a>
  19. <li><a name="TOC4" href="#SEC4">COMMAND LINE OPTIONS</a>
  20. <li><a name="TOC5" href="#SEC5">DESCRIPTION</a>
  21. <li><a name="TOC6" href="#SEC6">COMMAND LINES</a>
  22. <li><a name="TOC7" href="#SEC7">MODIFIER SYNTAX</a>
  23. <li><a name="TOC8" href="#SEC8">PATTERN SYNTAX</a>
  24. <li><a name="TOC9" href="#SEC9">SUBJECT LINE SYNTAX</a>
  25. <li><a name="TOC10" href="#SEC10">PATTERN MODIFIERS</a>
  26. <li><a name="TOC11" href="#SEC11">SUBJECT MODIFIERS</a>
  27. <li><a name="TOC12" href="#SEC12">THE ALTERNATIVE MATCHING FUNCTION</a>
  28. <li><a name="TOC13" href="#SEC13">DEFAULT OUTPUT FROM pcre2test</a>
  29. <li><a name="TOC14" href="#SEC14">OUTPUT FROM THE ALTERNATIVE MATCHING FUNCTION</a>
  30. <li><a name="TOC15" href="#SEC15">RESTARTING AFTER A PARTIAL MATCH</a>
  31. <li><a name="TOC16" href="#SEC16">CALLOUTS</a>
  32. <li><a name="TOC17" href="#SEC17">NON-PRINTING CHARACTERS</a>
  33. <li><a name="TOC18" href="#SEC18">SAVING AND RESTORING COMPILED PATTERNS</a>
  34. <li><a name="TOC19" href="#SEC19">SEE ALSO</a>
  35. <li><a name="TOC20" href="#SEC20">AUTHOR</a>
  36. <li><a name="TOC21" href="#SEC21">REVISION</a>
  37. </ul>
  38. <br><a name="SEC1" href="#TOC1">SYNOPSIS</a><br>
  39. <P>
  40. <b>pcre2test [options] [input file [output file]]</b>
  41. <br>
  42. <br>
  43. <b>pcre2test</b> is a test program for the PCRE2 regular expression libraries,
  44. but it can also be used for experimenting with regular expressions. This
  45. document describes the features of the test program; for details of the regular
  46. expressions themselves, see the
  47. <a href="pcre2pattern.html"><b>pcre2pattern</b></a>
  48. documentation. For details of the PCRE2 library function calls and their
  49. options, see the
  50. <a href="pcre2api.html"><b>pcre2api</b></a>
  51. documentation.
  52. </P>
  53. <P>
  54. The input for <b>pcre2test</b> is a sequence of regular expression patterns and
  55. subject strings to be matched. There are also command lines for setting
  56. defaults and controlling some special actions. The output shows the result of
  57. each match attempt. Modifiers on external or internal command lines, the
  58. patterns, and the subject lines specify PCRE2 function options, control how the
  59. subject is processed, and what output is produced.
  60. </P>
  61. <P>
  62. There are many obscure modifiers, some of which are specifically designed for
  63. use in conjunction with the test script and data files that are distributed as
  64. part of PCRE2. All the modifiers are documented here, some without much
  65. justification, but many of them are unlikely to be of use except when testing
  66. the libraries.
  67. </P>
  68. <br><a name="SEC2" href="#TOC1">PCRE2's 8-BIT, 16-BIT AND 32-BIT LIBRARIES</a><br>
  69. <P>
  70. Different versions of the PCRE2 library can be built to support character
  71. strings that are encoded in 8-bit, 16-bit, or 32-bit code units. One, two, or
  72. all three of these libraries may be simultaneously installed. The
  73. <b>pcre2test</b> program can be used to test all the libraries. However, its own
  74. input and output are always in 8-bit format. When testing the 16-bit or 32-bit
  75. libraries, patterns and subject strings are converted to 16-bit or 32-bit
  76. format before being passed to the library functions. Results are converted back
  77. to 8-bit code units for output.
  78. </P>
  79. <P>
  80. In the rest of this document, the names of library functions and structures
  81. are given in generic form, for example, <b>pcre2_compile()</b>. The actual
  82. names used in the libraries have a suffix _8, _16, or _32, as appropriate.
  83. <a name="inputencoding"></a></P>
  84. <br><a name="SEC3" href="#TOC1">INPUT ENCODING</a><br>
  85. <P>
  86. Input to <b>pcre2test</b> is processed line by line, either by calling the C
  87. library's <b>fgets()</b> function, or via the <b>libreadline</b> or <b>libedit</b>
  88. library. In some Windows environments character 26 (hex 1A) causes an immediate
  89. end of file, and no further data is read, so this character should be avoided
  90. unless you really want that action.
  91. </P>
  92. <P>
  93. The input is processed using C's string functions, so must not contain binary
  94. zeros, even though in Unix-like environments, <b>fgets()</b> treats any bytes
  95. other than newline as data characters. An error is generated if a binary zero
  96. is encountered. By default subject lines are processed for backslash escapes,
  97. which makes it possible to include any data value in strings that are passed to
  98. the library for matching. For patterns, there is a facility for specifying some
  99. or all of the 8-bit input characters as hexadecimal pairs, which makes it
  100. possible to include binary zeros.
  101. </P>
  102. <br><b>
  103. Input for the 16-bit and 32-bit libraries
  104. </b><br>
  105. <P>
  106. When testing the 16-bit or 32-bit libraries, there is a need to be able to
  107. generate character code points greater than 255 in the strings that are passed
  108. to the library. For subject lines, backslash escapes can be used. In addition,
  109. when the <b>utf</b> modifier (see
  110. <a href="#optionmodifiers">"Setting compilation options"</a>
  111. below) is set, the pattern and any following subject lines are interpreted as
  112. UTF-8 strings and translated to UTF-16 or UTF-32 as appropriate.
  113. </P>
  114. <P>
  115. For non-UTF testing of wide characters, the <b>utf8_input</b> modifier can be
  116. used. This is mutually exclusive with <b>utf</b>, and is allowed only in 16-bit
  117. or 32-bit mode. It causes the pattern and following subject lines to be treated
  118. as UTF-8 according to the original definition (RFC 2279), which allows for
  119. character values up to 0x7fffffff. Each character is placed in one 16-bit or
  120. 32-bit code unit (in the 16-bit case, values greater than 0xffff cause an error
  121. to occur).
  122. </P>
  123. <P>
  124. UTF-8 (in its original definition) is not capable of encoding values greater
  125. than 0x7fffffff, but such values can be handled by the 32-bit library. When
  126. testing this library in non-UTF mode with <b>utf8_input</b> set, if any
  127. character is preceded by the byte 0xff (which is an invalid byte in UTF-8)
  128. 0x80000000 is added to the character's value. This is the only way of passing
  129. such code points in a pattern string. For subject strings, using an escape
  130. sequence is preferable.
  131. </P>
  132. <br><a name="SEC4" href="#TOC1">COMMAND LINE OPTIONS</a><br>
  133. <P>
  134. <b>-8</b>
  135. If the 8-bit library has been built, this option causes it to be used (this is
  136. the default). If the 8-bit library has not been built, this option causes an
  137. error.
  138. </P>
  139. <P>
  140. <b>-16</b>
  141. If the 16-bit library has been built, this option causes it to be used. If the
  142. 8-bit library has not been built, this is the default. If the 16-bit library
  143. has not been built, this option causes an error.
  144. </P>
  145. <P>
  146. <b>-32</b>
  147. If the 32-bit library has been built, this option causes it to be used. If no
  148. other library has been built, this is the default. If the 32-bit library has
  149. not been built, this option causes an error.
  150. </P>
  151. <P>
  152. <b>-ac</b>
  153. Behave as if each pattern has the <b>auto_callout</b> modifier, that is, insert
  154. automatic callouts into every pattern that is compiled.
  155. </P>
  156. <P>
  157. <b>-AC</b>
  158. As for <b>-ac</b>, but in addition behave as if each subject line has the
  159. <b>callout_extra</b> modifier, that is, show additional information from
  160. callouts.
  161. </P>
  162. <P>
  163. <b>-b</b>
  164. Behave as if each pattern has the <b>fullbincode</b> modifier; the full
  165. internal binary form of the pattern is output after compilation.
  166. </P>
  167. <P>
  168. <b>-C</b>
  169. Output the version number of the PCRE2 library, and all available information
  170. about the optional features that are included, and then exit with zero exit
  171. code. All other options are ignored. If both -C and -LM are present, whichever
  172. is first is recognized.
  173. </P>
  174. <P>
  175. <b>-C</b> <i>option</i>
  176. Output information about a specific build-time option, then exit. This
  177. functionality is intended for use in scripts such as <b>RunTest</b>. The
  178. following options output the value and set the exit code as indicated:
  179. <pre>
  180. ebcdic-nl the code for LF (= NL) in an EBCDIC environment:
  181. 0x15 or 0x25
  182. 0 if used in an ASCII environment
  183. exit code is always 0
  184. linksize the configured internal link size (2, 3, or 4)
  185. exit code is set to the link size
  186. newline the default newline setting:
  187. CR, LF, CRLF, ANYCRLF, ANY, or NUL
  188. exit code is always 0
  189. bsr the default setting for what \R matches:
  190. ANYCRLF or ANY
  191. exit code is always 0
  192. </pre>
  193. The following options output 1 for true or 0 for false, and set the exit code
  194. to the same value:
  195. <pre>
  196. backslash-C \C is supported (not locked out)
  197. ebcdic compiled for an EBCDIC environment
  198. jit just-in-time support is available
  199. pcre2-16 the 16-bit library was built
  200. pcre2-32 the 32-bit library was built
  201. pcre2-8 the 8-bit library was built
  202. unicode Unicode support is available
  203. </pre>
  204. If an unknown option is given, an error message is output; the exit code is 0.
  205. </P>
  206. <P>
  207. <b>-d</b>
  208. Behave as if each pattern has the <b>debug</b> modifier; the internal
  209. form and information about the compiled pattern is output after compilation;
  210. <b>-d</b> is equivalent to <b>-b -i</b>.
  211. </P>
  212. <P>
  213. <b>-dfa</b>
  214. Behave as if each subject line has the <b>dfa</b> modifier; matching is done
  215. using the <b>pcre2_dfa_match()</b> function instead of the default
  216. <b>pcre2_match()</b>.
  217. </P>
  218. <P>
  219. <b>-error</b> <i>number[,number,...]</i>
  220. Call <b>pcre2_get_error_message()</b> for each of the error numbers in the
  221. comma-separated list, display the resulting messages on the standard output,
  222. then exit with zero exit code. The numbers may be positive or negative. This is
  223. a convenience facility for PCRE2 maintainers.
  224. </P>
  225. <P>
  226. <b>-help</b>
  227. Output a brief summary these options and then exit.
  228. </P>
  229. <P>
  230. <b>-i</b>
  231. Behave as if each pattern has the <b>info</b> modifier; information about the
  232. compiled pattern is given after compilation.
  233. </P>
  234. <P>
  235. <b>-jit</b>
  236. Behave as if each pattern line has the <b>jit</b> modifier; after successful
  237. compilation, each pattern is passed to the just-in-time compiler, if available.
  238. </P>
  239. <P>
  240. <b>-jitfast</b>
  241. Behave as if each pattern line has the <b>jitfast</b> modifier; after
  242. successful compilation, each pattern is passed to the just-in-time compiler, if
  243. available, and each subject line is passed directly to the JIT matcher via its
  244. "fast path".
  245. </P>
  246. <P>
  247. <b>-jitverify</b>
  248. Behave as if each pattern line has the <b>jitverify</b> modifier; after
  249. successful compilation, each pattern is passed to the just-in-time compiler, if
  250. available, and the use of JIT for matching is verified.
  251. </P>
  252. <P>
  253. <b>-LM</b>
  254. List modifiers: write a list of available pattern and subject modifiers to the
  255. standard output, then exit with zero exit code. All other options are ignored.
  256. If both -C and any -Lx options are present, whichever is first is recognized.
  257. </P>
  258. <P>
  259. <b>-LP</b>
  260. List properties: write a list of recognized Unicode properties to the standard
  261. output, then exit with zero exit code. All other options are ignored. If both
  262. -C and any -Lx options are present, whichever is first is recognized.
  263. </P>
  264. <P>
  265. <b>-LS</b>
  266. List scripts: write a list of recognized Unicode script names to the standard
  267. output, then exit with zero exit code. All other options are ignored. If both
  268. -C and any -Lx options are present, whichever is first is recognized.
  269. </P>
  270. <P>
  271. <b>-pattern</b> <i>modifier-list</i>
  272. Behave as if each pattern line contains the given modifiers.
  273. </P>
  274. <P>
  275. <b>-q</b>
  276. Do not output the version number of <b>pcre2test</b> at the start of execution.
  277. </P>
  278. <P>
  279. <b>-S</b> <i>size</i>
  280. On Unix-like systems, set the size of the run-time stack to <i>size</i>
  281. mebibytes (units of 1024*1024 bytes).
  282. </P>
  283. <P>
  284. <b>-subject</b> <i>modifier-list</i>
  285. Behave as if each subject line contains the given modifiers.
  286. </P>
  287. <P>
  288. <b>-t</b>
  289. Run each compile and match many times with a timer, and output the resulting
  290. times per compile or match. When JIT is used, separate times are given for the
  291. initial compile and the JIT compile. You can control the number of iterations
  292. that are used for timing by following <b>-t</b> with a number (as a separate
  293. item on the command line). For example, "-t 1000" iterates 1000 times. The
  294. default is to iterate 500,000 times.
  295. </P>
  296. <P>
  297. <b>-tm</b>
  298. This is like <b>-t</b> except that it times only the matching phase, not the
  299. compile phase.
  300. </P>
  301. <P>
  302. <b>-T</b> <b>-TM</b>
  303. These behave like <b>-t</b> and <b>-tm</b>, but in addition, at the end of a run,
  304. the total times for all compiles and matches are output.
  305. </P>
  306. <P>
  307. <b>-version</b>
  308. Output the PCRE2 version number and then exit.
  309. </P>
  310. <br><a name="SEC5" href="#TOC1">DESCRIPTION</a><br>
  311. <P>
  312. If <b>pcre2test</b> is given two filename arguments, it reads from the first and
  313. writes to the second. If the first name is "-", input is taken from the
  314. standard input. If <b>pcre2test</b> is given only one argument, it reads from
  315. that file and writes to stdout. Otherwise, it reads from stdin and writes to
  316. stdout.
  317. </P>
  318. <P>
  319. When <b>pcre2test</b> is built, a configuration option can specify that it
  320. should be linked with the <b>libreadline</b> or <b>libedit</b> library. When this
  321. is done, if the input is from a terminal, it is read using the <b>readline()</b>
  322. function. This provides line-editing and history facilities. The output from
  323. the <b>-help</b> option states whether or not <b>readline()</b> will be used.
  324. </P>
  325. <P>
  326. The program handles any number of tests, each of which consists of a set of
  327. input lines. Each set starts with a regular expression pattern, followed by any
  328. number of subject lines to be matched against that pattern. In between sets of
  329. test data, command lines that begin with # may appear. This file format, with
  330. some restrictions, can also be processed by the <b>perltest.sh</b> script that
  331. is distributed with PCRE2 as a means of checking that the behaviour of PCRE2
  332. and Perl is the same. For a specification of <b>perltest.sh</b>, see the
  333. comments near its beginning. See also the #perltest command below.
  334. </P>
  335. <P>
  336. When the input is a terminal, <b>pcre2test</b> prompts for each line of input,
  337. using "re&#62;" to prompt for regular expression patterns, and "data&#62;" to prompt
  338. for subject lines. Command lines starting with # can be entered only in
  339. response to the "re&#62;" prompt.
  340. </P>
  341. <P>
  342. Each subject line is matched separately and independently. If you want to do
  343. multi-line matches, you have to use the \n escape sequence (or \r or \r\n,
  344. etc., depending on the newline setting) in a single line of input to encode the
  345. newline sequences. There is no limit on the length of subject lines; the input
  346. buffer is automatically extended if it is too small. There are replication
  347. features that makes it possible to generate long repetitive pattern or subject
  348. lines without having to supply them explicitly.
  349. </P>
  350. <P>
  351. An empty line or the end of the file signals the end of the subject lines for a
  352. test, at which point a new pattern or command line is expected if there is
  353. still input to be read.
  354. </P>
  355. <br><a name="SEC6" href="#TOC1">COMMAND LINES</a><br>
  356. <P>
  357. In between sets of test data, a line that begins with # is interpreted as a
  358. command line. If the first character is followed by white space or an
  359. exclamation mark, the line is treated as a comment, and ignored. Otherwise, the
  360. following commands are recognized:
  361. <pre>
  362. #forbid_utf
  363. </pre>
  364. Subsequent patterns automatically have the PCRE2_NEVER_UTF and PCRE2_NEVER_UCP
  365. options set, which locks out the use of the PCRE2_UTF and PCRE2_UCP options and
  366. the use of (*UTF) and (*UCP) at the start of patterns. This command also forces
  367. an error if a subsequent pattern contains any occurrences of \P, \p, or \X,
  368. which are still supported when PCRE2_UTF is not set, but which require Unicode
  369. property support to be included in the library.
  370. </P>
  371. <P>
  372. This is a trigger guard that is used in test files to ensure that UTF or
  373. Unicode property tests are not accidentally added to files that are used when
  374. Unicode support is not included in the library. Setting PCRE2_NEVER_UTF and
  375. PCRE2_NEVER_UCP as a default can also be obtained by the use of <b>#pattern</b>;
  376. the difference is that <b>#forbid_utf</b> cannot be unset, and the automatic
  377. options are not displayed in pattern information, to avoid cluttering up test
  378. output.
  379. <pre>
  380. #load &#60;filename&#62;
  381. </pre>
  382. This command is used to load a set of precompiled patterns from a file, as
  383. described in the section entitled "Saving and restoring compiled patterns"
  384. <a href="#saverestore">below.</a>
  385. <pre>
  386. #loadtables &#60;filename&#62;
  387. </pre>
  388. This command is used to load a set of binary character tables that can be
  389. accessed by the tables=3 qualifier. Such tables can be created by the
  390. <b>pcre2_dftables</b> program with the -b option.
  391. <pre>
  392. #newline_default [&#60;newline-list&#62;]
  393. </pre>
  394. When PCRE2 is built, a default newline convention can be specified. This
  395. determines which characters and/or character pairs are recognized as indicating
  396. a newline in a pattern or subject string. The default can be overridden when a
  397. pattern is compiled. The standard test files contain tests of various newline
  398. conventions, but the majority of the tests expect a single linefeed to be
  399. recognized as a newline by default. Without special action the tests would fail
  400. when PCRE2 is compiled with either CR or CRLF as the default newline.
  401. </P>
  402. <P>
  403. The #newline_default command specifies a list of newline types that are
  404. acceptable as the default. The types must be one of CR, LF, CRLF, ANYCRLF,
  405. ANY, or NUL (in upper or lower case), for example:
  406. <pre>
  407. #newline_default LF Any anyCRLF
  408. </pre>
  409. If the default newline is in the list, this command has no effect. Otherwise,
  410. except when testing the POSIX API, a <b>newline</b> modifier that specifies the
  411. first newline convention in the list (LF in the above example) is added to any
  412. pattern that does not already have a <b>newline</b> modifier. If the newline
  413. list is empty, the feature is turned off. This command is present in a number
  414. of the standard test input files.
  415. </P>
  416. <P>
  417. When the POSIX API is being tested there is no way to override the default
  418. newline convention, though it is possible to set the newline convention from
  419. within the pattern. A warning is given if the <b>posix</b> or <b>posix_nosub</b>
  420. modifier is used when <b>#newline_default</b> would set a default for the
  421. non-POSIX API.
  422. <pre>
  423. #pattern &#60;modifier-list&#62;
  424. </pre>
  425. This command sets a default modifier list that applies to all subsequent
  426. patterns. Modifiers on a pattern can change these settings.
  427. <pre>
  428. #perltest
  429. </pre>
  430. This line is used in test files that can also be processed by <b>perltest.sh</b>
  431. to confirm that Perl gives the same results as PCRE2. Subsequent tests are
  432. checked for the use of <b>pcre2test</b> features that are incompatible with the
  433. <b>perltest.sh</b> script.
  434. </P>
  435. <P>
  436. Patterns must use '/' as their delimiter, and only certain modifiers are
  437. supported. Comment lines, #pattern commands, and #subject commands that set or
  438. unset "mark" are recognized and acted on. The #perltest, #forbid_utf, and
  439. #newline_default commands, which are needed in the relevant pcre2test files,
  440. are silently ignored. All other command lines are ignored, but give a warning
  441. message. The <b>#perltest</b> command helps detect tests that are accidentally
  442. put in the wrong file or use the wrong delimiter. For more details of the
  443. <b>perltest.sh</b> script see the comments it contains.
  444. <pre>
  445. #pop [&#60;modifiers&#62;]
  446. #popcopy [&#60;modifiers&#62;]
  447. </pre>
  448. These commands are used to manipulate the stack of compiled patterns, as
  449. described in the section entitled "Saving and restoring compiled patterns"
  450. <a href="#saverestore">below.</a>
  451. <pre>
  452. #save &#60;filename&#62;
  453. </pre>
  454. This command is used to save a set of compiled patterns to a file, as described
  455. in the section entitled "Saving and restoring compiled patterns"
  456. <a href="#saverestore">below.</a>
  457. <pre>
  458. #subject &#60;modifier-list&#62;
  459. </pre>
  460. This command sets a default modifier list that applies to all subsequent
  461. subject lines. Modifiers on a subject line can change these settings.
  462. </P>
  463. <br><a name="SEC7" href="#TOC1">MODIFIER SYNTAX</a><br>
  464. <P>
  465. Modifier lists are used with both pattern and subject lines. Items in a list
  466. are separated by commas followed by optional white space. Trailing whitespace
  467. in a modifier list is ignored. Some modifiers may be given for both patterns
  468. and subject lines, whereas others are valid only for one or the other. Each
  469. modifier has a long name, for example "anchored", and some of them must be
  470. followed by an equals sign and a value, for example, "offset=12". Values cannot
  471. contain comma characters, but may contain spaces. Modifiers that do not take
  472. values may be preceded by a minus sign to turn off a previous setting.
  473. </P>
  474. <P>
  475. A few of the more common modifiers can also be specified as single letters, for
  476. example "i" for "caseless". In documentation, following the Perl convention,
  477. these are written with a slash ("the /i modifier") for clarity. Abbreviated
  478. modifiers must all be concatenated in the first item of a modifier list. If the
  479. first item is not recognized as a long modifier name, it is interpreted as a
  480. sequence of these abbreviations. For example:
  481. <pre>
  482. /abc/ig,newline=cr,jit=3
  483. </pre>
  484. This is a pattern line whose modifier list starts with two one-letter modifiers
  485. (/i and /g). The lower-case abbreviated modifiers are the same as used in Perl.
  486. </P>
  487. <br><a name="SEC8" href="#TOC1">PATTERN SYNTAX</a><br>
  488. <P>
  489. A pattern line must start with one of the following characters (common symbols,
  490. excluding pattern meta-characters):
  491. <pre>
  492. / ! " ' ` - = _ : ; , % & @ ~
  493. </pre>
  494. This is interpreted as the pattern's delimiter. A regular expression may be
  495. continued over several input lines, in which case the newline characters are
  496. included within it. It is possible to include the delimiter as a literal within
  497. the pattern by escaping it with a backslash, for example
  498. <pre>
  499. /abc\/def/
  500. </pre>
  501. If you do this, the escape and the delimiter form part of the pattern, but
  502. since the delimiters are all non-alphanumeric, the inclusion of the backslash
  503. does not affect the pattern's interpretation. Note, however, that this trick
  504. does not work within \Q...\E literal bracketing because the backslash will
  505. itself be interpreted as a literal. If the terminating delimiter is immediately
  506. followed by a backslash, for example,
  507. <pre>
  508. /abc/\
  509. </pre>
  510. a backslash is added to the end of the pattern. This is done to provide a way
  511. of testing the error condition that arises if a pattern finishes with a
  512. backslash, because
  513. <pre>
  514. /abc\/
  515. </pre>
  516. is interpreted as the first line of a pattern that starts with "abc/", causing
  517. pcre2test to read the next line as a continuation of the regular expression.
  518. </P>
  519. <P>
  520. A pattern can be followed by a modifier list (details below).
  521. </P>
  522. <br><a name="SEC9" href="#TOC1">SUBJECT LINE SYNTAX</a><br>
  523. <P>
  524. Before each subject line is passed to <b>pcre2_match()</b>,
  525. <b>pcre2_dfa_match()</b>, or <b>pcre2_jit_match()</b>, leading and trailing white
  526. space is removed, and the line is scanned for backslash escapes, unless the
  527. <b>subject_literal</b> modifier was set for the pattern. The following provide a
  528. means of encoding non-printing characters in a visible way:
  529. <pre>
  530. \a alarm (BEL, \x07)
  531. \b backspace (\x08)
  532. \e escape (\x27)
  533. \f form feed (\x0c)
  534. \n newline (\x0a)
  535. \r carriage return (\x0d)
  536. \t tab (\x09)
  537. \v vertical tab (\x0b)
  538. \nnn octal character (up to 3 octal digits); always
  539. a byte unless &#62; 255 in UTF-8 or 16-bit or 32-bit mode
  540. \o{dd...} octal character (any number of octal digits}
  541. \xhh hexadecimal byte (up to 2 hex digits)
  542. \x{hh...} hexadecimal character (any number of hex digits)
  543. </pre>
  544. The use of \x{hh...} is not dependent on the use of the <b>utf</b> modifier on
  545. the pattern. It is recognized always. There may be any number of hexadecimal
  546. digits inside the braces; invalid values provoke error messages.
  547. </P>
  548. <P>
  549. Note that \xhh specifies one byte rather than one character in UTF-8 mode;
  550. this makes it possible to construct invalid UTF-8 sequences for testing
  551. purposes. On the other hand, \x{hh} is interpreted as a UTF-8 character in
  552. UTF-8 mode, generating more than one byte if the value is greater than 127.
  553. When testing the 8-bit library not in UTF-8 mode, \x{hh} generates one byte
  554. for values less than 256, and causes an error for greater values.
  555. </P>
  556. <P>
  557. In UTF-16 mode, all 4-digit \x{hhhh} values are accepted. This makes it
  558. possible to construct invalid UTF-16 sequences for testing purposes.
  559. </P>
  560. <P>
  561. In UTF-32 mode, all 4- to 8-digit \x{...} values are accepted. This makes it
  562. possible to construct invalid UTF-32 sequences for testing purposes.
  563. </P>
  564. <P>
  565. There is a special backslash sequence that specifies replication of one or more
  566. characters:
  567. <pre>
  568. \[&#60;characters&#62;]{&#60;count&#62;}
  569. </pre>
  570. This makes it possible to test long strings without having to provide them as
  571. part of the file. For example:
  572. <pre>
  573. \[abc]{4}
  574. </pre>
  575. is converted to "abcabcabcabc". This feature does not support nesting. To
  576. include a closing square bracket in the characters, code it as \x5D.
  577. </P>
  578. <P>
  579. A backslash followed by an equals sign marks the end of the subject string and
  580. the start of a modifier list. For example:
  581. <pre>
  582. abc\=notbol,notempty
  583. </pre>
  584. If the subject string is empty and \= is followed by whitespace, the line is
  585. treated as a comment line, and is not used for matching. For example:
  586. <pre>
  587. \= This is a comment.
  588. abc\= This is an invalid modifier list.
  589. </pre>
  590. A backslash followed by any other non-alphanumeric character just escapes that
  591. character. A backslash followed by anything else causes an error. However, if
  592. the very last character in the line is a backslash (and there is no modifier
  593. list), it is ignored. This gives a way of passing an empty line as data, since
  594. a real empty line terminates the data input.
  595. </P>
  596. <P>
  597. If the <b>subject_literal</b> modifier is set for a pattern, all subject lines
  598. that follow are treated as literals, with no special treatment of backslashes.
  599. No replication is possible, and any subject modifiers must be set as defaults
  600. by a <b>#subject</b> command.
  601. </P>
  602. <br><a name="SEC10" href="#TOC1">PATTERN MODIFIERS</a><br>
  603. <P>
  604. There are several types of modifier that can appear in pattern lines. Except
  605. where noted below, they may also be used in <b>#pattern</b> commands. A
  606. pattern's modifier list can add to or override default modifiers that were set
  607. by a previous <b>#pattern</b> command.
  608. <a name="optionmodifiers"></a></P>
  609. <br><b>
  610. Setting compilation options
  611. </b><br>
  612. <P>
  613. The following modifiers set options for <b>pcre2_compile()</b>. Most of them set
  614. bits in the options argument of that function, but those whose names start with
  615. PCRE2_EXTRA are additional options that are set in the compile context.
  616. Some of these options have single-letter abbreviations. There is special
  617. handling for /x: if a second x is present, PCRE2_EXTENDED is converted into
  618. PCRE2_EXTENDED_MORE as in Perl. A third appearance adds PCRE2_EXTENDED as well,
  619. though this makes no difference to the way <b>pcre2_compile()</b> behaves. See
  620. <a href="pcre2api.html"><b>pcre2api</b></a>
  621. for a description of the effects of these options.
  622. <pre>
  623. allow_empty_class set PCRE2_ALLOW_EMPTY_CLASS
  624. allow_lookaround_bsk set PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK
  625. allow_surrogate_escapes set PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES
  626. alt_bsux set PCRE2_ALT_BSUX
  627. alt_circumflex set PCRE2_ALT_CIRCUMFLEX
  628. alt_verbnames set PCRE2_ALT_VERBNAMES
  629. anchored set PCRE2_ANCHORED
  630. /a ascii_all set all ASCII options
  631. ascii_bsd set PCRE2_EXTRA_ASCII_BSD
  632. ascii_bss set PCRE2_EXTRA_ASCII_BSS
  633. ascii_bsw set PCRE2_EXTRA_ASCII_BSW
  634. ascii_digit set PCRE2_EXTRA_ASCII_DIGIT
  635. ascii_posix set PCRE2_EXTRA_ASCII_POSIX
  636. auto_callout set PCRE2_AUTO_CALLOUT
  637. bad_escape_is_literal set PCRE2_EXTRA_BAD_ESCAPE_IS_LITERAL
  638. /i caseless set PCRE2_CASELESS
  639. /r caseless_restrict set PCRE2_EXTRA_CASELESS_RESTRICT
  640. dollar_endonly set PCRE2_DOLLAR_ENDONLY
  641. /s dotall set PCRE2_DOTALL
  642. dupnames set PCRE2_DUPNAMES
  643. endanchored set PCRE2_ENDANCHORED
  644. escaped_cr_is_lf set PCRE2_EXTRA_ESCAPED_CR_IS_LF
  645. /x extended set PCRE2_EXTENDED
  646. /xx extended_more set PCRE2_EXTENDED_MORE
  647. extra_alt_bsux set PCRE2_EXTRA_ALT_BSUX
  648. firstline set PCRE2_FIRSTLINE
  649. literal set PCRE2_LITERAL
  650. match_line set PCRE2_EXTRA_MATCH_LINE
  651. match_invalid_utf set PCRE2_MATCH_INVALID_UTF
  652. match_unset_backref set PCRE2_MATCH_UNSET_BACKREF
  653. match_word set PCRE2_EXTRA_MATCH_WORD
  654. /m multiline set PCRE2_MULTILINE
  655. never_backslash_c set PCRE2_NEVER_BACKSLASH_C
  656. never_ucp set PCRE2_NEVER_UCP
  657. never_utf set PCRE2_NEVER_UTF
  658. /n no_auto_capture set PCRE2_NO_AUTO_CAPTURE
  659. no_auto_possess set PCRE2_NO_AUTO_POSSESS
  660. no_dotstar_anchor set PCRE2_NO_DOTSTAR_ANCHOR
  661. no_start_optimize set PCRE2_NO_START_OPTIMIZE
  662. no_utf_check set PCRE2_NO_UTF_CHECK
  663. ucp set PCRE2_UCP
  664. ungreedy set PCRE2_UNGREEDY
  665. use_offset_limit set PCRE2_USE_OFFSET_LIMIT
  666. utf set PCRE2_UTF
  667. </pre>
  668. As well as turning on the PCRE2_UTF option, the <b>utf</b> modifier causes all
  669. non-printing characters in output strings to be printed using the \x{hh...}
  670. notation. Otherwise, those less than 0x100 are output in hex without the curly
  671. brackets. Setting <b>utf</b> in 16-bit or 32-bit mode also causes pattern and
  672. subject strings to be translated to UTF-16 or UTF-32, respectively, before
  673. being passed to library functions.
  674. <a name="controlmodifiers"></a></P>
  675. <br><b>
  676. Setting compilation controls
  677. </b><br>
  678. <P>
  679. The following modifiers affect the compilation process or request information
  680. about the pattern. There are single-letter abbreviations for some that are
  681. heavily used in the test files.
  682. <pre>
  683. bsr=[anycrlf|unicode] specify \R handling
  684. /B bincode show binary code without lengths
  685. callout_info show callout information
  686. convert=&#60;options&#62; request foreign pattern conversion
  687. convert_glob_escape=c set glob escape character
  688. convert_glob_separator=c set glob separator character
  689. convert_length set convert buffer length
  690. debug same as info,fullbincode
  691. framesize show matching frame size
  692. fullbincode show binary code with lengths
  693. /I info show info about compiled pattern
  694. hex unquoted characters are hexadecimal
  695. jit[=&#60;number&#62;] use JIT
  696. jitfast use JIT fast path
  697. jitverify verify JIT use
  698. locale=&#60;name&#62; use this locale
  699. max_pattern_compiled ) set maximum compiled pattern
  700. _length=&#60;n&#62; ) length (bytes)
  701. max_pattern_length=&#60;n&#62; set maximum pattern length (code units)
  702. max_varlookbehind=&#60;n&#62; set maximum variable lookbehind length
  703. memory show memory used
  704. newline=&#60;type&#62; set newline type
  705. null_context compile with a NULL context
  706. null_pattern pass pattern as NULL
  707. parens_nest_limit=&#60;n&#62; set maximum parentheses depth
  708. posix use the POSIX API
  709. posix_nosub use the POSIX API with REG_NOSUB
  710. push push compiled pattern onto the stack
  711. pushcopy push a copy onto the stack
  712. stackguard=&#60;number&#62; test the stackguard feature
  713. subject_literal treat all subject lines as literal
  714. tables=[0|1|2|3] select internal tables
  715. use_length do not zero-terminate the pattern
  716. utf8_input treat input as UTF-8
  717. </pre>
  718. The effects of these modifiers are described in the following sections.
  719. </P>
  720. <br><b>
  721. Newline and \R handling
  722. </b><br>
  723. <P>
  724. The <b>bsr</b> modifier specifies what \R in a pattern should match. If it is
  725. set to "anycrlf", \R matches CR, LF, or CRLF only. If it is set to "unicode",
  726. \R matches any Unicode newline sequence. The default can be specified when
  727. PCRE2 is built; if it is not, the default is set to Unicode.
  728. </P>
  729. <P>
  730. The <b>newline</b> modifier specifies which characters are to be interpreted as
  731. newlines, both in the pattern and in subject lines. The type must be one of CR,
  732. LF, CRLF, ANYCRLF, ANY, or NUL (in upper or lower case).
  733. </P>
  734. <br><b>
  735. Information about a pattern
  736. </b><br>
  737. <P>
  738. The <b>debug</b> modifier is a shorthand for <b>info,fullbincode</b>, requesting
  739. all available information.
  740. </P>
  741. <P>
  742. The <b>bincode</b> modifier causes a representation of the compiled code to be
  743. output after compilation. This information does not contain length and offset
  744. values, which ensures that the same output is generated for different internal
  745. link sizes and different code unit widths. By using <b>bincode</b>, the same
  746. regression tests can be used in different environments.
  747. </P>
  748. <P>
  749. The <b>fullbincode</b> modifier, by contrast, <i>does</i> include length and
  750. offset values. This is used in a few special tests that run only for specific
  751. code unit widths and link sizes, and is also useful for one-off tests.
  752. </P>
  753. <P>
  754. The <b>info</b> modifier requests information about the compiled pattern
  755. (whether it is anchored, has a fixed first character, and so on). The
  756. information is obtained from the <b>pcre2_pattern_info()</b> function. Here are
  757. some typical examples:
  758. <pre>
  759. re&#62; /(?i)(^a|^b)/m,info
  760. Capture group count = 1
  761. Compile options: multiline
  762. Overall options: caseless multiline
  763. First code unit at start or follows newline
  764. Subject length lower bound = 1
  765. re&#62; /(?i)abc/info
  766. Capture group count = 0
  767. Compile options: &#60;none&#62;
  768. Overall options: caseless
  769. First code unit = 'a' (caseless)
  770. Last code unit = 'c' (caseless)
  771. Subject length lower bound = 3
  772. </pre>
  773. "Compile options" are those specified by modifiers; "overall options" have
  774. added options that are taken or deduced from the pattern. If both sets of
  775. options are the same, just a single "options" line is output; if there are no
  776. options, the line is omitted. "First code unit" is where any match must start;
  777. if there is more than one they are listed as "starting code units". "Last code
  778. unit" is the last literal code unit that must be present in any match. This is
  779. not necessarily the last character. These lines are omitted if no starting or
  780. ending code units are recorded. The subject length line is omitted when
  781. <b>no_start_optimize</b> is set because the minimum length is not calculated
  782. when it can never be used.
  783. </P>
  784. <P>
  785. The <b>framesize</b> modifier shows the size, in bytes, of each storage frame
  786. used by <b>pcre2_match()</b> for handling backtracking. The size depends on the
  787. number of capturing parentheses in the pattern. A vector of these frames is
  788. used at matching time; its overall size is shown when the <b>heaframes_size</b>
  789. subject modifier is set.
  790. </P>
  791. <P>
  792. The <b>callout_info</b> modifier requests information about all the callouts in
  793. the pattern. A list of them is output at the end of any other information that
  794. is requested. For each callout, either its number or string is given, followed
  795. by the item that follows it in the pattern.
  796. </P>
  797. <br><b>
  798. Passing a NULL context
  799. </b><br>
  800. <P>
  801. Normally, <b>pcre2test</b> passes a context block to <b>pcre2_compile()</b>. If
  802. the <b>null_context</b> modifier is set, however, NULL is passed. This is for
  803. testing that <b>pcre2_compile()</b> behaves correctly in this case (it uses
  804. default values).
  805. </P>
  806. <br><b>
  807. Passing a NULL pattern
  808. </b><br>
  809. <P>
  810. The <b>null_pattern</b> modifier is for testing the behaviour of
  811. <b>pcre2_compile()</b> when the pattern argument is NULL. The length value
  812. passed is the default PCRE2_ZERO_TERMINATED unless <b>use_length</b> is set.
  813. Any length other than zero causes an error.
  814. </P>
  815. <br><b>
  816. Specifying pattern characters in hexadecimal
  817. </b><br>
  818. <P>
  819. The <b>hex</b> modifier specifies that the characters of the pattern, except for
  820. substrings enclosed in single or double quotes, are to be interpreted as pairs
  821. of hexadecimal digits. This feature is provided as a way of creating patterns
  822. that contain binary zeros and other non-printing characters. White space is
  823. permitted between pairs of digits. For example, this pattern contains three
  824. characters:
  825. <pre>
  826. /ab 32 59/hex
  827. </pre>
  828. Parts of such a pattern are taken literally if quoted. This pattern contains
  829. nine characters, only two of which are specified in hexadecimal:
  830. <pre>
  831. /ab "literal" 32/hex
  832. </pre>
  833. Either single or double quotes may be used. There is no way of including
  834. the delimiter within a substring. The <b>hex</b> and <b>expand</b> modifiers are
  835. mutually exclusive.
  836. </P>
  837. <br><b>
  838. Specifying the pattern's length
  839. </b><br>
  840. <P>
  841. By default, patterns are passed to the compiling functions as zero-terminated
  842. strings but can be passed by length instead of being zero-terminated. The
  843. <b>use_length</b> modifier causes this to happen. Using a length happens
  844. automatically (whether or not <b>use_length</b> is set) when <b>hex</b> is set,
  845. because patterns specified in hexadecimal may contain binary zeros.
  846. </P>
  847. <P>
  848. If <b>hex</b> or <b>use_length</b> is used with the POSIX wrapper API (see
  849. <a href="#posixwrapper">"Using the POSIX wrapper API"</a>
  850. below), the REG_PEND extension is used to pass the pattern's length.
  851. </P>
  852. <br><b>
  853. Specifying a maximum for variable lookbehinds
  854. </b><br>
  855. <P>
  856. Variable lookbehind assertions are supported only if, for each one, there is a
  857. maximum length (in characters) that it can match. There is a limit on this,
  858. whose default can be set at build time, with an ultimate default of 255. The
  859. <b>max_varlookbehind</b> modifier uses the <b>pcre2_set_max_varlookbehind()</b>
  860. function to change the limit. Lookbehinds whose branches each match a fixed
  861. length are limited to 65535 characters per branch.
  862. </P>
  863. <br><b>
  864. Specifying wide characters in 16-bit and 32-bit modes
  865. </b><br>
  866. <P>
  867. In 16-bit and 32-bit modes, all input is automatically treated as UTF-8 and
  868. translated to UTF-16 or UTF-32 when the <b>utf</b> modifier is set. For testing
  869. the 16-bit and 32-bit libraries in non-UTF mode, the <b>utf8_input</b> modifier
  870. can be used. It is mutually exclusive with <b>utf</b>. Input lines are
  871. interpreted as UTF-8 as a means of specifying wide characters. More details are
  872. given in
  873. <a href="#inputencoding">"Input encoding"</a>
  874. above.
  875. </P>
  876. <br><b>
  877. Generating long repetitive patterns
  878. </b><br>
  879. <P>
  880. Some tests use long patterns that are very repetitive. Instead of creating a
  881. very long input line for such a pattern, you can use a special repetition
  882. feature, similar to the one described for subject lines above. If the
  883. <b>expand</b> modifier is present on a pattern, parts of the pattern that have
  884. the form
  885. <pre>
  886. \[&#60;characters&#62;]{&#60;count&#62;}
  887. </pre>
  888. are expanded before the pattern is passed to <b>pcre2_compile()</b>. For
  889. example, \[AB]{6000} is expanded to "ABAB..." 6000 times. This construction
  890. cannot be nested. An initial "\[" sequence is recognized only if "]{" followed
  891. by decimal digits and "}" is found later in the pattern. If not, the characters
  892. remain in the pattern unaltered. The <b>expand</b> and <b>hex</b> modifiers are
  893. mutually exclusive.
  894. </P>
  895. <P>
  896. If part of an expanded pattern looks like an expansion, but is really part of
  897. the actual pattern, unwanted expansion can be avoided by giving two values in
  898. the quantifier. For example, \[AB]{6000,6000} is not recognized as an
  899. expansion item.
  900. </P>
  901. <P>
  902. If the <b>info</b> modifier is set on an expanded pattern, the result of the
  903. expansion is included in the information that is output.
  904. </P>
  905. <br><b>
  906. JIT compilation
  907. </b><br>
  908. <P>
  909. Just-in-time (JIT) compiling is a heavyweight optimization that can greatly
  910. speed up pattern matching. See the
  911. <a href="pcre2jit.html"><b>pcre2jit</b></a>
  912. documentation for details. JIT compiling happens, optionally, after a pattern
  913. has been successfully compiled into an internal form. The JIT compiler converts
  914. this to optimized machine code. It needs to know whether the match-time options
  915. PCRE2_PARTIAL_HARD and PCRE2_PARTIAL_SOFT are going to be used, because
  916. different code is generated for the different cases. See the <b>partial</b>
  917. modifier in "Subject Modifiers"
  918. <a href="#subjectmodifiers">below</a>
  919. for details of how these options are specified for each match attempt.
  920. </P>
  921. <P>
  922. JIT compilation is requested by the <b>jit</b> pattern modifier, which may
  923. optionally be followed by an equals sign and a number in the range 0 to 7.
  924. The three bits that make up the number specify which of the three JIT operating
  925. modes are to be compiled:
  926. <pre>
  927. 1 compile JIT code for non-partial matching
  928. 2 compile JIT code for soft partial matching
  929. 4 compile JIT code for hard partial matching
  930. </pre>
  931. The possible values for the <b>jit</b> modifier are therefore:
  932. <pre>
  933. 0 disable JIT
  934. 1 normal matching only
  935. 2 soft partial matching only
  936. 3 normal and soft partial matching
  937. 4 hard partial matching only
  938. 6 soft and hard partial matching only
  939. 7 all three modes
  940. </pre>
  941. If no number is given, 7 is assumed. The phrase "partial matching" means a call
  942. to <b>pcre2_match()</b> with either the PCRE2_PARTIAL_SOFT or the
  943. PCRE2_PARTIAL_HARD option set. Note that such a call may return a complete
  944. match; the options enable the possibility of a partial match, but do not
  945. require it. Note also that if you request JIT compilation only for partial
  946. matching (for example, jit=2) but do not set the <b>partial</b> modifier on a
  947. subject line, that match will not use JIT code because none was compiled for
  948. non-partial matching.
  949. </P>
  950. <P>
  951. If JIT compilation is successful, the compiled JIT code will automatically be
  952. used when an appropriate type of match is run, except when incompatible
  953. run-time options are specified. For more details, see the
  954. <a href="pcre2jit.html"><b>pcre2jit</b></a>
  955. documentation. See also the <b>jitstack</b> modifier below for a way of
  956. setting the size of the JIT stack.
  957. </P>
  958. <P>
  959. If the <b>jitfast</b> modifier is specified, matching is done using the JIT
  960. "fast path" interface, <b>pcre2_jit_match()</b>, which skips some of the sanity
  961. checks that are done by <b>pcre2_match()</b>, and of course does not work when
  962. JIT is not supported. If <b>jitfast</b> is specified without <b>jit</b>, jit=7 is
  963. assumed.
  964. </P>
  965. <P>
  966. If the <b>jitverify</b> modifier is specified, information about the compiled
  967. pattern shows whether JIT compilation was or was not successful. If
  968. <b>jitverify</b> is specified without <b>jit</b>, jit=7 is assumed. If JIT
  969. compilation is successful when <b>jitverify</b> is set, the text "(JIT)" is
  970. added to the first output line after a match or non match when JIT-compiled
  971. code was actually used in the match.
  972. </P>
  973. <br><b>
  974. Setting a locale
  975. </b><br>
  976. <P>
  977. The <b>locale</b> modifier must specify the name of a locale, for example:
  978. <pre>
  979. /pattern/locale=fr_FR
  980. </pre>
  981. The given locale is set, <b>pcre2_maketables()</b> is called to build a set of
  982. character tables for the locale, and this is then passed to
  983. <b>pcre2_compile()</b> when compiling the regular expression. The same tables
  984. are used when matching the following subject lines. The <b>locale</b> modifier
  985. applies only to the pattern on which it appears, but can be given in a
  986. <b>#pattern</b> command if a default is needed. Setting a locale and alternate
  987. character tables are mutually exclusive.
  988. </P>
  989. <br><b>
  990. Showing pattern memory
  991. </b><br>
  992. <P>
  993. The <b>memory</b> modifier causes the size in bytes of the memory used to hold
  994. the compiled pattern to be output. This does not include the size of the
  995. <b>pcre2_code</b> block; it is just the actual compiled data. If the pattern is
  996. subsequently passed to the JIT compiler, the size of the JIT compiled code is
  997. also output. Here is an example:
  998. <pre>
  999. re&#62; /a(b)c/jit,memory
  1000. Memory allocation (code space): 21
  1001. Memory allocation (JIT code): 1910
  1002. </PRE>
  1003. </P>
  1004. <br><b>
  1005. Limiting nested parentheses
  1006. </b><br>
  1007. <P>
  1008. The <b>parens_nest_limit</b> modifier sets a limit on the depth of nested
  1009. parentheses in a pattern. Breaching the limit causes a compilation error.
  1010. The default for the library is set when PCRE2 is built, but <b>pcre2test</b>
  1011. sets its own default of 220, which is required for running the standard test
  1012. suite.
  1013. </P>
  1014. <br><b>
  1015. Limiting the pattern length
  1016. </b><br>
  1017. <P>
  1018. The <b>max_pattern_length</b> modifier sets a limit, in code units, to the
  1019. length of pattern that <b>pcre2_compile()</b> will accept. Breaching the limit
  1020. causes a compilation error. The default is the largest number a PCRE2_SIZE
  1021. variable can hold (essentially unlimited).
  1022. </P>
  1023. <br><b>
  1024. Limiting the size of a compiled pattern
  1025. </b><br>
  1026. <P>
  1027. The <b>max_pattern_compiled_length</b> modifier sets a limit, in bytes, to the
  1028. amount of memory used by a compiled pattern. Breaching the limit causes a
  1029. compilation error. The default is the largest number a PCRE2_SIZE variable can
  1030. hold (essentially unlimited).
  1031. <a name="posixwrapper"></a></P>
  1032. <br><b>
  1033. Using the POSIX wrapper API
  1034. </b><br>
  1035. <P>
  1036. The <b>posix</b> and <b>posix_nosub</b> modifiers cause <b>pcre2test</b> to call
  1037. PCRE2 via the POSIX wrapper API rather than its native API. When
  1038. <b>posix_nosub</b> is used, the POSIX option REG_NOSUB is passed to
  1039. <b>regcomp()</b>. The POSIX wrapper supports only the 8-bit library. Note that
  1040. it does not imply POSIX matching semantics; for more detail see the
  1041. <a href="pcre2posix.html"><b>pcre2posix</b></a>
  1042. documentation. The following pattern modifiers set options for the
  1043. <b>regcomp()</b> function:
  1044. <pre>
  1045. caseless REG_ICASE
  1046. multiline REG_NEWLINE
  1047. dotall REG_DOTALL )
  1048. ungreedy REG_UNGREEDY ) These options are not part of
  1049. ucp REG_UCP ) the POSIX standard
  1050. utf REG_UTF8 )
  1051. </pre>
  1052. The <b>regerror_buffsize</b> modifier specifies a size for the error buffer that
  1053. is passed to <b>regerror()</b> in the event of a compilation error. For example:
  1054. <pre>
  1055. /abc/posix,regerror_buffsize=20
  1056. </pre>
  1057. This provides a means of testing the behaviour of <b>regerror()</b> when the
  1058. buffer is too small for the error message. If this modifier has not been set, a
  1059. large buffer is used.
  1060. </P>
  1061. <P>
  1062. The <b>aftertext</b> and <b>allaftertext</b> subject modifiers work as described
  1063. below. All other modifiers are either ignored, with a warning message, or cause
  1064. an error.
  1065. </P>
  1066. <P>
  1067. The pattern is passed to <b>regcomp()</b> as a zero-terminated string by
  1068. default, but if the <b>use_length</b> or <b>hex</b> modifiers are set, the
  1069. REG_PEND extension is used to pass it by length.
  1070. </P>
  1071. <br><b>
  1072. Testing the stack guard feature
  1073. </b><br>
  1074. <P>
  1075. The <b>stackguard</b> modifier is used to test the use of
  1076. <b>pcre2_set_compile_recursion_guard()</b>, a function that is provided to
  1077. enable stack availability to be checked during compilation (see the
  1078. <a href="pcre2api.html"><b>pcre2api</b></a>
  1079. documentation for details). If the number specified by the modifier is greater
  1080. than zero, <b>pcre2_set_compile_recursion_guard()</b> is called to set up
  1081. callback from <b>pcre2_compile()</b> to a local function. The argument it
  1082. receives is the current nesting parenthesis depth; if this is greater than the
  1083. value given by the modifier, non-zero is returned, causing the compilation to
  1084. be aborted.
  1085. </P>
  1086. <br><b>
  1087. Using alternative character tables
  1088. </b><br>
  1089. <P>
  1090. The value specified for the <b>tables</b> modifier must be one of the digits 0,
  1091. 1, 2, or 3. It causes a specific set of built-in character tables to be passed
  1092. to <b>pcre2_compile()</b>. This is used in the PCRE2 tests to check behaviour
  1093. with different character tables. The digit specifies the tables as follows:
  1094. <pre>
  1095. 0 do not pass any special character tables
  1096. 1 the default ASCII tables, as distributed in
  1097. pcre2_chartables.c.dist
  1098. 2 a set of tables defining ISO 8859 characters
  1099. 3 a set of tables loaded by the #loadtables command
  1100. </pre>
  1101. In tables 2, some characters whose codes are greater than 128 are identified as
  1102. letters, digits, spaces, etc. Tables 3 can be used only after a
  1103. <b>#loadtables</b> command has loaded them from a binary file. Setting alternate
  1104. character tables and a locale are mutually exclusive.
  1105. </P>
  1106. <br><b>
  1107. Setting certain match controls
  1108. </b><br>
  1109. <P>
  1110. The following modifiers are really subject modifiers, and are described under
  1111. "Subject Modifiers" below. However, they may be included in a pattern's
  1112. modifier list, in which case they are applied to every subject line that is
  1113. processed with that pattern. These modifiers do not affect the compilation
  1114. process.
  1115. <pre>
  1116. aftertext show text after match
  1117. allaftertext show text after captures
  1118. allcaptures show all captures
  1119. allvector show the entire ovector
  1120. allusedtext show all consulted text
  1121. altglobal alternative global matching
  1122. /g global global matching
  1123. heapframes_size show match data heapframes size
  1124. jitstack=&#60;n&#62; set size of JIT stack
  1125. mark show mark values
  1126. replace=&#60;string&#62; specify a replacement string
  1127. startchar show starting character when relevant
  1128. substitute_callout use substitution callouts
  1129. substitute_extended use PCRE2_SUBSTITUTE_EXTENDED
  1130. substitute_literal use PCRE2_SUBSTITUTE_LITERAL
  1131. substitute_matched use PCRE2_SUBSTITUTE_MATCHED
  1132. substitute_overflow_length use PCRE2_SUBSTITUTE_OVERFLOW_LENGTH
  1133. substitute_replacement_only use PCRE2_SUBSTITUTE_REPLACEMENT_ONLY
  1134. substitute_skip=&#60;n&#62; skip substitution &#60;n&#62;
  1135. substitute_stop=&#60;n&#62; skip substitution &#60;n&#62; and following
  1136. substitute_unknown_unset use PCRE2_SUBSTITUTE_UNKNOWN_UNSET
  1137. substitute_unset_empty use PCRE2_SUBSTITUTE_UNSET_EMPTY
  1138. </pre>
  1139. These modifiers may not appear in a <b>#pattern</b> command. If you want them as
  1140. defaults, set them in a <b>#subject</b> command.
  1141. </P>
  1142. <br><b>
  1143. Specifying literal subject lines
  1144. </b><br>
  1145. <P>
  1146. If the <b>subject_literal</b> modifier is present on a pattern, all the subject
  1147. lines that it matches are taken as literal strings, with no interpretation of
  1148. backslashes. It is not possible to set subject modifiers on such lines, but any
  1149. that are set as defaults by a <b>#subject</b> command are recognized.
  1150. </P>
  1151. <br><b>
  1152. Saving a compiled pattern
  1153. </b><br>
  1154. <P>
  1155. When a pattern with the <b>push</b> modifier is successfully compiled, it is
  1156. pushed onto a stack of compiled patterns, and <b>pcre2test</b> expects the next
  1157. line to contain a new pattern (or a command) instead of a subject line. This
  1158. facility is used when saving compiled patterns to a file, as described in the
  1159. section entitled "Saving and restoring compiled patterns"
  1160. <a href="#saverestore">below.</a>
  1161. If <b>pushcopy</b> is used instead of <b>push</b>, a copy of the compiled
  1162. pattern is stacked, leaving the original as current, ready to match the
  1163. following input lines. This provides a way of testing the
  1164. <b>pcre2_code_copy()</b> function.
  1165. The <b>push</b> and <b>pushcopy </b> modifiers are incompatible with compilation
  1166. modifiers such as <b>global</b> that act at match time. Any that are specified
  1167. are ignored (for the stacked copy), with a warning message, except for
  1168. <b>replace</b>, which causes an error. Note that <b>jitverify</b>, which is
  1169. allowed, does not carry through to any subsequent matching that uses a stacked
  1170. pattern.
  1171. </P>
  1172. <br><b>
  1173. Testing foreign pattern conversion
  1174. </b><br>
  1175. <P>
  1176. The experimental foreign pattern conversion functions in PCRE2 can be tested by
  1177. setting the <b>convert</b> modifier. Its argument is a colon-separated list of
  1178. options, which set the equivalent option for the <b>pcre2_pattern_convert()</b>
  1179. function:
  1180. <pre>
  1181. glob PCRE2_CONVERT_GLOB
  1182. glob_no_starstar PCRE2_CONVERT_GLOB_NO_STARSTAR
  1183. glob_no_wild_separator PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR
  1184. posix_basic PCRE2_CONVERT_POSIX_BASIC
  1185. posix_extended PCRE2_CONVERT_POSIX_EXTENDED
  1186. unset Unset all options
  1187. </pre>
  1188. The "unset" value is useful for turning off a default that has been set by a
  1189. <b>#pattern</b> command. When one of these options is set, the input pattern is
  1190. passed to <b>pcre2_pattern_convert()</b>. If the conversion is successful, the
  1191. result is reflected in the output and then passed to <b>pcre2_compile()</b>. The
  1192. normal <b>utf</b> and <b>no_utf_check</b> options, if set, cause the
  1193. PCRE2_CONVERT_UTF and PCRE2_CONVERT_NO_UTF_CHECK options to be passed to
  1194. <b>pcre2_pattern_convert()</b>.
  1195. </P>
  1196. <P>
  1197. By default, the conversion function is allowed to allocate a buffer for its
  1198. output. However, if the <b>convert_length</b> modifier is set to a value greater
  1199. than zero, <b>pcre2test</b> passes a buffer of the given length. This makes it
  1200. possible to test the length check.
  1201. </P>
  1202. <P>
  1203. The <b>convert_glob_escape</b> and <b>convert_glob_separator</b> modifiers can be
  1204. used to specify the escape and separator characters for glob processing,
  1205. overriding the defaults, which are operating-system dependent.
  1206. <a name="subjectmodifiers"></a></P>
  1207. <br><a name="SEC11" href="#TOC1">SUBJECT MODIFIERS</a><br>
  1208. <P>
  1209. The modifiers that can appear in subject lines and the <b>#subject</b>
  1210. command are of two types.
  1211. </P>
  1212. <br><b>
  1213. Setting match options
  1214. </b><br>
  1215. <P>
  1216. The following modifiers set options for <b>pcre2_match()</b> or
  1217. <b>pcre2_dfa_match()</b>. See
  1218. <a href="pcreapi.html"><b>pcreapi</b></a>
  1219. for a description of their effects.
  1220. <pre>
  1221. anchored set PCRE2_ANCHORED
  1222. endanchored set PCRE2_ENDANCHORED
  1223. dfa_restart set PCRE2_DFA_RESTART
  1224. dfa_shortest set PCRE2_DFA_SHORTEST
  1225. disable_recurseloop_check set PCRE2_DISABLE_RECURSELOOP_CHECK
  1226. no_jit set PCRE2_NO_JIT
  1227. no_utf_check set PCRE2_NO_UTF_CHECK
  1228. notbol set PCRE2_NOTBOL
  1229. notempty set PCRE2_NOTEMPTY
  1230. notempty_atstart set PCRE2_NOTEMPTY_ATSTART
  1231. noteol set PCRE2_NOTEOL
  1232. partial_hard (or ph) set PCRE2_PARTIAL_HARD
  1233. partial_soft (or ps) set PCRE2_PARTIAL_SOFT
  1234. </pre>
  1235. The partial matching modifiers are provided with abbreviations because they
  1236. appear frequently in tests.
  1237. </P>
  1238. <P>
  1239. If the <b>posix</b> or <b>posix_nosub</b> modifier was present on the pattern,
  1240. causing the POSIX wrapper API to be used, the only option-setting modifiers
  1241. that have any effect are <b>notbol</b>, <b>notempty</b>, and <b>noteol</b>,
  1242. causing REG_NOTBOL, REG_NOTEMPTY, and REG_NOTEOL, respectively, to be passed to
  1243. <b>regexec()</b>. The other modifiers are ignored, with a warning message.
  1244. </P>
  1245. <P>
  1246. There is one additional modifier that can be used with the POSIX wrapper. It is
  1247. ignored (with a warning) if used for non-POSIX matching.
  1248. <pre>
  1249. posix_startend=&#60;n&#62;[:&#60;m&#62;]
  1250. </pre>
  1251. This causes the subject string to be passed to <b>regexec()</b> using the
  1252. REG_STARTEND option, which uses offsets to specify which part of the string is
  1253. searched. If only one number is given, the end offset is passed as the end of
  1254. the subject string. For more detail of REG_STARTEND, see the
  1255. <a href="pcre2posix.html"><b>pcre2posix</b></a>
  1256. documentation. If the subject string contains binary zeros (coded as escapes
  1257. such as \x{00} because <b>pcre2test</b> does not support actual binary zeros in
  1258. its input), you must use <b>posix_startend</b> to specify its length.
  1259. </P>
  1260. <br><b>
  1261. Setting match controls
  1262. </b><br>
  1263. <P>
  1264. The following modifiers affect the matching process or request additional
  1265. information. Some of them may also be specified on a pattern line (see above),
  1266. in which case they apply to every subject line that is matched against that
  1267. pattern, but can be overridden by modifiers on the subject.
  1268. <pre>
  1269. aftertext show text after match
  1270. allaftertext show text after captures
  1271. allcaptures show all captures
  1272. allvector show the entire ovector
  1273. allusedtext show all consulted text (non-JIT only)
  1274. altglobal alternative global matching
  1275. callout_capture show captures at callout time
  1276. callout_data=&#60;n&#62; set a value to pass via callouts
  1277. callout_error=&#60;n&#62;[:&#60;m&#62;] control callout error
  1278. callout_extra show extra callout information
  1279. callout_fail=&#60;n&#62;[:&#60;m&#62;] control callout failure
  1280. callout_no_where do not show position of a callout
  1281. callout_none do not supply a callout function
  1282. copy=&#60;number or name&#62; copy captured substring
  1283. depth_limit=&#60;n&#62; set a depth limit
  1284. dfa use <b>pcre2_dfa_match()</b>
  1285. find_limits find heap, match and depth limits
  1286. find_limits_noheap find match and depth limits
  1287. get=&#60;number or name&#62; extract captured substring
  1288. getall extract all captured substrings
  1289. /g global global matching
  1290. heapframes_size show match data heapframes size
  1291. heap_limit=&#60;n&#62; set a limit on heap memory (Kbytes)
  1292. jitstack=&#60;n&#62; set size of JIT stack
  1293. mark show mark values
  1294. match_limit=&#60;n&#62; set a match limit
  1295. memory show heap memory usage
  1296. null_context match with a NULL context
  1297. null_replacement substitute with NULL replacement
  1298. null_subject match with NULL subject
  1299. offset=&#60;n&#62; set starting offset
  1300. offset_limit=&#60;n&#62; set offset limit
  1301. ovector=&#60;n&#62; set size of output vector
  1302. recursion_limit=&#60;n&#62; obsolete synonym for depth_limit
  1303. replace=&#60;string&#62; specify a replacement string
  1304. startchar show startchar when relevant
  1305. startoffset=&#60;n&#62; same as offset=&#60;n&#62;
  1306. substitute_callout use substitution callouts
  1307. substitute_extedded use PCRE2_SUBSTITUTE_EXTENDED
  1308. substitute_literal use PCRE2_SUBSTITUTE_LITERAL
  1309. substitute_matched use PCRE2_SUBSTITUTE_MATCHED
  1310. substitute_overflow_length use PCRE2_SUBSTITUTE_OVERFLOW_LENGTH
  1311. substitute_replacement_only use PCRE2_SUBSTITUTE_REPLACEMENT_ONLY
  1312. substitute_skip=&#60;n&#62; skip substitution number n
  1313. substitute_stop=&#60;n&#62; skip substitution number n and greater
  1314. substitute_unknown_unset use PCRE2_SUBSTITUTE_UNKNOWN_UNSET
  1315. substitute_unset_empty use PCRE2_SUBSTITUTE_UNSET_EMPTY
  1316. zero_terminate pass the subject as zero-terminated
  1317. </pre>
  1318. The effects of these modifiers are described in the following sections. When
  1319. matching via the POSIX wrapper API, the <b>aftertext</b>, <b>allaftertext</b>,
  1320. and <b>ovector</b> subject modifiers work as described below. All other
  1321. modifiers are either ignored, with a warning message, or cause an error.
  1322. </P>
  1323. <br><b>
  1324. Showing more text
  1325. </b><br>
  1326. <P>
  1327. The <b>aftertext</b> modifier requests that as well as outputting the part of
  1328. the subject string that matched the entire pattern, <b>pcre2test</b> should in
  1329. addition output the remainder of the subject string. This is useful for tests
  1330. where the subject contains multiple copies of the same substring. The
  1331. <b>allaftertext</b> modifier requests the same action for captured substrings as
  1332. well as the main matched substring. In each case the remainder is output on the
  1333. following line with a plus character following the capture number.
  1334. </P>
  1335. <P>
  1336. The <b>allusedtext</b> modifier requests that all the text that was consulted
  1337. during a successful pattern match by the interpreter should be shown, for both
  1338. full and partial matches. This feature is not supported for JIT matching, and
  1339. if requested with JIT it is ignored (with a warning message). Setting this
  1340. modifier affects the output if there is a lookbehind at the start of a match,
  1341. or, for a complete match, a lookahead at the end, or if \K is used in the
  1342. pattern. Characters that precede or follow the start and end of the actual
  1343. match are indicated in the output by '&#60;' or '&#62;' characters underneath them.
  1344. Here is an example:
  1345. <pre>
  1346. re&#62; /(?&#60;=pqr)abc(?=xyz)/
  1347. data&#62; 123pqrabcxyz456\=allusedtext
  1348. 0: pqrabcxyz
  1349. &#60;&#60;&#60; &#62;&#62;&#62;
  1350. data&#62; 123pqrabcxy\=ph,allusedtext
  1351. Partial match: pqrabcxy
  1352. &#60;&#60;&#60;
  1353. </pre>
  1354. The first, complete match shows that the matched string is "abc", with the
  1355. preceding and following strings "pqr" and "xyz" having been consulted during
  1356. the match (when processing the assertions). The partial match can indicate only
  1357. the preceding string.
  1358. </P>
  1359. <P>
  1360. The <b>startchar</b> modifier requests that the starting character for the match
  1361. be indicated, if it is different to the start of the matched string. The only
  1362. time when this occurs is when \K has been processed as part of the match. In
  1363. this situation, the output for the matched string is displayed from the
  1364. starting character instead of from the match point, with circumflex characters
  1365. under the earlier characters. For example:
  1366. <pre>
  1367. re&#62; /abc\Kxyz/
  1368. data&#62; abcxyz\=startchar
  1369. 0: abcxyz
  1370. ^^^
  1371. </pre>
  1372. Unlike <b>allusedtext</b>, the <b>startchar</b> modifier can be used with JIT.
  1373. However, these two modifiers are mutually exclusive.
  1374. </P>
  1375. <br><b>
  1376. Showing the value of all capture groups
  1377. </b><br>
  1378. <P>
  1379. The <b>allcaptures</b> modifier requests that the values of all potential
  1380. captured parentheses be output after a match. By default, only those up to the
  1381. highest one actually used in the match are output (corresponding to the return
  1382. code from <b>pcre2_match()</b>). Groups that did not take part in the match
  1383. are output as "&#60;unset&#62;". This modifier is not relevant for DFA matching (which
  1384. does no capturing) and does not apply when <b>replace</b> is specified; it is
  1385. ignored, with a warning message, if present.
  1386. </P>
  1387. <br><b>
  1388. Showing the entire ovector, for all outcomes
  1389. </b><br>
  1390. <P>
  1391. The <b>allvector</b> modifier requests that the entire ovector be shown,
  1392. whatever the outcome of the match. Compare <b>allcaptures</b>, which shows only
  1393. up to the maximum number of capture groups for the pattern, and then only for a
  1394. successful complete non-DFA match. This modifier, which acts after any match
  1395. result, and also for DFA matching, provides a means of checking that there are
  1396. no unexpected modifications to ovector fields. Before each match attempt, the
  1397. ovector is filled with a special value, and if this is found in both elements
  1398. of a capturing pair, "&#60;unchanged&#62;" is output. After a successful match, this
  1399. applies to all groups after the maximum capture group for the pattern. In other
  1400. cases it applies to the entire ovector. After a partial match, the first two
  1401. elements are the only ones that should be set. After a DFA match, the amount of
  1402. ovector that is used depends on the number of matches that were found.
  1403. </P>
  1404. <br><b>
  1405. Testing pattern callouts
  1406. </b><br>
  1407. <P>
  1408. A callout function is supplied when <b>pcre2test</b> calls the library matching
  1409. functions, unless <b>callout_none</b> is specified. Its behaviour can be
  1410. controlled by various modifiers listed above whose names begin with
  1411. <b>callout_</b>. Details are given in the section entitled "Callouts"
  1412. <a href="#callouts">below.</a>
  1413. Testing callouts from <b>pcre2_substitute()</b> is described separately in
  1414. "Testing the substitution function"
  1415. <a href="#substitution">below.</a>
  1416. </P>
  1417. <br><b>
  1418. Finding all matches in a string
  1419. </b><br>
  1420. <P>
  1421. Searching for all possible matches within a subject can be requested by the
  1422. <b>global</b> or <b>altglobal</b> modifier. After finding a match, the matching
  1423. function is called again to search the remainder of the subject. The difference
  1424. between <b>global</b> and <b>altglobal</b> is that the former uses the
  1425. <i>start_offset</i> argument to <b>pcre2_match()</b> or <b>pcre2_dfa_match()</b>
  1426. to start searching at a new point within the entire string (which is what Perl
  1427. does), whereas the latter passes over a shortened subject. This makes a
  1428. difference to the matching process if the pattern begins with a lookbehind
  1429. assertion (including \b or \B).
  1430. </P>
  1431. <P>
  1432. If an empty string is matched, the next match is done with the
  1433. PCRE2_NOTEMPTY_ATSTART and PCRE2_ANCHORED flags set, in order to search for
  1434. another, non-empty, match at the same point in the subject. If this match
  1435. fails, the start offset is advanced, and the normal match is retried. This
  1436. imitates the way Perl handles such cases when using the <b>/g</b> modifier or
  1437. the <b>split()</b> function. Normally, the start offset is advanced by one
  1438. character, but if the newline convention recognizes CRLF as a newline, and the
  1439. current character is CR followed by LF, an advance of two characters occurs.
  1440. </P>
  1441. <br><b>
  1442. Testing substring extraction functions
  1443. </b><br>
  1444. <P>
  1445. The <b>copy</b> and <b>get</b> modifiers can be used to test the
  1446. <b>pcre2_substring_copy_xxx()</b> and <b>pcre2_substring_get_xxx()</b> functions.
  1447. They can be given more than once, and each can specify a capture group name or
  1448. number, for example:
  1449. <pre>
  1450. abcd\=copy=1,copy=3,get=G1
  1451. </pre>
  1452. If the <b>#subject</b> command is used to set default copy and/or get lists,
  1453. these can be unset by specifying a negative number to cancel all numbered
  1454. groups and an empty name to cancel all named groups.
  1455. </P>
  1456. <P>
  1457. The <b>getall</b> modifier tests <b>pcre2_substring_list_get()</b>, which
  1458. extracts all captured substrings.
  1459. </P>
  1460. <P>
  1461. If the subject line is successfully matched, the substrings extracted by the
  1462. convenience functions are output with C, G, or L after the string number
  1463. instead of a colon. This is in addition to the normal full list. The string
  1464. length (that is, the return from the extraction function) is given in
  1465. parentheses after each substring, followed by the name when the extraction was
  1466. by name.
  1467. <a name="substitution"></a></P>
  1468. <br><b>
  1469. Testing the substitution function
  1470. </b><br>
  1471. <P>
  1472. If the <b>replace</b> modifier is set, the <b>pcre2_substitute()</b> function is
  1473. called instead of one of the matching functions (or after one call of
  1474. <b>pcre2_match()</b> in the case of PCRE2_SUBSTITUTE_MATCHED). Note that
  1475. replacement strings cannot contain commas, because a comma signifies the end of
  1476. a modifier. This is not thought to be an issue in a test program.
  1477. </P>
  1478. <P>
  1479. Specifying a completely empty replacement string disables this modifier.
  1480. However, it is possible to specify an empty replacement by providing a buffer
  1481. length, as described below, for an otherwise empty replacement.
  1482. </P>
  1483. <P>
  1484. Unlike subject strings, <b>pcre2test</b> does not process replacement strings
  1485. for escape sequences. In UTF mode, a replacement string is checked to see if it
  1486. is a valid UTF-8 string. If so, it is correctly converted to a UTF string of
  1487. the appropriate code unit width. If it is not a valid UTF-8 string, the
  1488. individual code units are copied directly. This provides a means of passing an
  1489. invalid UTF-8 string for testing purposes.
  1490. </P>
  1491. <P>
  1492. The following modifiers set options (in additional to the normal match options)
  1493. for <b>pcre2_substitute()</b>:
  1494. <pre>
  1495. global PCRE2_SUBSTITUTE_GLOBAL
  1496. substitute_extended PCRE2_SUBSTITUTE_EXTENDED
  1497. substitute_literal PCRE2_SUBSTITUTE_LITERAL
  1498. substitute_matched PCRE2_SUBSTITUTE_MATCHED
  1499. substitute_overflow_length PCRE2_SUBSTITUTE_OVERFLOW_LENGTH
  1500. substitute_replacement_only PCRE2_SUBSTITUTE_REPLACEMENT_ONLY
  1501. substitute_unknown_unset PCRE2_SUBSTITUTE_UNKNOWN_UNSET
  1502. substitute_unset_empty PCRE2_SUBSTITUTE_UNSET_EMPTY
  1503. </pre>
  1504. See the
  1505. <a href="pcre2api.html"><b>pcre2api</b></a>
  1506. documentation for details of these options.
  1507. </P>
  1508. <P>
  1509. After a successful substitution, the modified string is output, preceded by the
  1510. number of replacements. This may be zero if there were no matches. Here is a
  1511. simple example of a substitution test:
  1512. <pre>
  1513. /abc/replace=xxx
  1514. =abc=abc=
  1515. 1: =xxx=abc=
  1516. =abc=abc=\=global
  1517. 2: =xxx=xxx=
  1518. </pre>
  1519. Subject and replacement strings should be kept relatively short (fewer than 256
  1520. characters) for substitution tests, as fixed-size buffers are used. To make it
  1521. easy to test for buffer overflow, if the replacement string starts with a
  1522. number in square brackets, that number is passed to <b>pcre2_substitute()</b> as
  1523. the size of the output buffer, with the replacement string starting at the next
  1524. character. Here is an example that tests the edge case:
  1525. <pre>
  1526. /abc/
  1527. 123abc123\=replace=[10]XYZ
  1528. 1: 123XYZ123
  1529. 123abc123\=replace=[9]XYZ
  1530. Failed: error -47: no more memory
  1531. </pre>
  1532. The default action of <b>pcre2_substitute()</b> is to return
  1533. PCRE2_ERROR_NOMEMORY when the output buffer is too small. However, if the
  1534. PCRE2_SUBSTITUTE_OVERFLOW_LENGTH option is set (by using the
  1535. <b>substitute_overflow_length</b> modifier), <b>pcre2_substitute()</b> continues
  1536. to go through the motions of matching and substituting (but not doing any
  1537. callouts), in order to compute the size of buffer that is required. When this
  1538. happens, <b>pcre2test</b> shows the required buffer length (which includes space
  1539. for the trailing zero) as part of the error message. For example:
  1540. <pre>
  1541. /abc/substitute_overflow_length
  1542. 123abc123\=replace=[9]XYZ
  1543. Failed: error -47: no more memory: 10 code units are needed
  1544. </pre>
  1545. A replacement string is ignored with POSIX and DFA matching. Specifying partial
  1546. matching provokes an error return ("bad option value") from
  1547. <b>pcre2_substitute()</b>.
  1548. </P>
  1549. <br><b>
  1550. Testing substitute callouts
  1551. </b><br>
  1552. <P>
  1553. If the <b>substitute_callout</b> modifier is set, a substitution callout
  1554. function is set up. The <b>null_context</b> modifier must not be set, because
  1555. the address of the callout function is passed in a match context. When the
  1556. callout function is called (after each substitution), details of the input
  1557. and output strings are output. For example:
  1558. <pre>
  1559. /abc/g,replace=&#60;$0&#62;,substitute_callout
  1560. abcdefabcpqr
  1561. 1(1) Old 0 3 "abc" New 0 5 "&#60;abc&#62;"
  1562. 2(1) Old 6 9 "abc" New 8 13 "&#60;abc&#62;"
  1563. 2: &#60;abc&#62;def&#60;abc&#62;pqr
  1564. </pre>
  1565. The first number on each callout line is the count of matches. The
  1566. parenthesized number is the number of pairs that are set in the ovector (that
  1567. is, one more than the number of capturing groups that were set). Then are
  1568. listed the offsets of the old substring, its contents, and the same for the
  1569. replacement.
  1570. </P>
  1571. <P>
  1572. By default, the substitution callout function returns zero, which accepts the
  1573. replacement and causes matching to continue if /g was used. Two further
  1574. modifiers can be used to test other return values. If <b>substitute_skip</b> is
  1575. set to a value greater than zero the callout function returns +1 for the match
  1576. of that number, and similarly <b>substitute_stop</b> returns -1. These cause the
  1577. replacement to be rejected, and -1 causes no further matching to take place. If
  1578. either of them are set, <b>substitute_callout</b> is assumed. For example:
  1579. <pre>
  1580. /abc/g,replace=&#60;$0&#62;,substitute_skip=1
  1581. abcdefabcpqr
  1582. 1(1) Old 0 3 "abc" New 0 5 "&#60;abc&#62; SKIPPED"
  1583. 2(1) Old 6 9 "abc" New 6 11 "&#60;abc&#62;"
  1584. 2: abcdef&#60;abc&#62;pqr
  1585. abcdefabcpqr\=substitute_stop=1
  1586. 1(1) Old 0 3 "abc" New 0 5 "&#60;abc&#62; STOPPED"
  1587. 1: abcdefabcpqr
  1588. </pre>
  1589. If both are set for the same number, stop takes precedence. Only a single skip
  1590. or stop is supported, which is sufficient for testing that the feature works.
  1591. </P>
  1592. <br><b>
  1593. Setting the JIT stack size
  1594. </b><br>
  1595. <P>
  1596. The <b>jitstack</b> modifier provides a way of setting the maximum stack size
  1597. that is used by the just-in-time optimization code. It is ignored if JIT
  1598. optimization is not being used. The value is a number of kibibytes (units of
  1599. 1024 bytes). Setting zero reverts to the default of 32KiB. Providing a stack
  1600. that is larger than the default is necessary only for very complicated
  1601. patterns. If <b>jitstack</b> is set non-zero on a subject line it overrides any
  1602. value that was set on the pattern.
  1603. </P>
  1604. <br><b>
  1605. Setting heap, match, and depth limits
  1606. </b><br>
  1607. <P>
  1608. The <b>heap_limit</b>, <b>match_limit</b>, and <b>depth_limit</b> modifiers set
  1609. the appropriate limits in the match context. These values are ignored when the
  1610. <b>find_limits</b> or <b>find_limits_noheap</b> modifier is specified.
  1611. </P>
  1612. <br><b>
  1613. Finding minimum limits
  1614. </b><br>
  1615. <P>
  1616. If the <b>find_limits</b> modifier is present on a subject line, <b>pcre2test</b>
  1617. calls the relevant matching function several times, setting different values in
  1618. the match context via <b>pcre2_set_heap_limit()</b>,
  1619. <b>pcre2_set_match_limit()</b>, or <b>pcre2_set_depth_limit()</b> until it finds
  1620. the smallest value for each parameter that allows the match to complete without
  1621. a "limit exceeded" error. The match itself may succeed or fail. An alternative
  1622. modifier, <b>find_limits_noheap</b>, omits the heap limit. This is used in the
  1623. standard tests, because the minimum heap limit varies between systems. If JIT
  1624. is being used, only the match limit is relevant, and the other two are
  1625. automatically omitted.
  1626. </P>
  1627. <P>
  1628. When using this modifier, the pattern should not contain any limit settings
  1629. such as (*LIMIT_MATCH=...) within it. If such a setting is present and is
  1630. lower than the minimum matching value, the minimum value cannot be found
  1631. because <b>pcre2_set_match_limit()</b> etc. are only able to reduce the value of
  1632. an in-pattern limit; they cannot increase it.
  1633. </P>
  1634. <P>
  1635. For non-DFA matching, the minimum <i>depth_limit</i> number is a measure of how
  1636. much nested backtracking happens (that is, how deeply the pattern's tree is
  1637. searched). In the case of DFA matching, <i>depth_limit</i> controls the depth of
  1638. recursive calls of the internal function that is used for handling pattern
  1639. recursion, lookaround assertions, and atomic groups.
  1640. </P>
  1641. <P>
  1642. For non-DFA matching, the <i>match_limit</i> number is a measure of the amount
  1643. of backtracking that takes place, and learning the minimum value can be
  1644. instructive. For most simple matches, the number is quite small, but for
  1645. patterns with very large numbers of matching possibilities, it can become large
  1646. very quickly with increasing length of subject string. In the case of DFA
  1647. matching, <i>match_limit</i> controls the total number of calls, both recursive
  1648. and non-recursive, to the internal matching function, thus controlling the
  1649. overall amount of computing resource that is used.
  1650. </P>
  1651. <P>
  1652. For both kinds of matching, the <i>heap_limit</i> number, which is in kibibytes
  1653. (units of 1024 bytes), limits the amount of heap memory used for matching.
  1654. </P>
  1655. <br><b>
  1656. Showing MARK names
  1657. </b><br>
  1658. <P>
  1659. The <b>mark</b> modifier causes the names from backtracking control verbs that
  1660. are returned from calls to <b>pcre2_match()</b> to be displayed. If a mark is
  1661. returned for a match, non-match, or partial match, <b>pcre2test</b> shows it.
  1662. For a match, it is on a line by itself, tagged with "MK:". Otherwise, it
  1663. is added to the non-match message.
  1664. </P>
  1665. <br><b>
  1666. Showing memory usage
  1667. </b><br>
  1668. <P>
  1669. The <b>memory</b> modifier causes <b>pcre2test</b> to log the sizes of all heap
  1670. memory allocation and freeing calls that occur during a call to
  1671. <b>pcre2_match()</b> or <b>pcre2_dfa_match()</b>. In the latter case, heap memory
  1672. is used only when a match requires more internal workspace that the default
  1673. allocation on the stack, so in many cases there will be no output. No heap
  1674. memory is allocated during matching with JIT. For this modifier to work, the
  1675. <b>null_context</b> modifier must not be set on both the pattern and the
  1676. subject, though it can be set on one or the other.
  1677. </P>
  1678. <br><b>
  1679. Showing the heap frame overall vector size
  1680. </b><br>
  1681. <P>
  1682. The <b>heapframes_size</b> modifier is relevant for matches using
  1683. <b>pcre2_match()</b> without JIT. After a match has run (whether successful or
  1684. not) the size, in bytes, of the allocated heap frames vector that is left
  1685. attached to the match data block is shown. If the matching action involved
  1686. several calls to <b>pcre2_match()</b> (for example, global matching or for
  1687. timing) only the final value is shown.
  1688. </P>
  1689. <P>
  1690. This modifier is ignored, with a warning, for POSIX or DFA matching. JIT
  1691. matching does not use the heap frames vector, so the size is always zero,
  1692. unless there was a previous non-JIT match. Note that specifing a size of zero
  1693. for the output vector (see below) causes <b>pcre2test</b> to free its match data
  1694. block (and associated heap frames vector) and allocate a new one.
  1695. </P>
  1696. <br><b>
  1697. Setting a starting offset
  1698. </b><br>
  1699. <P>
  1700. The <b>offset</b> modifier sets an offset in the subject string at which
  1701. matching starts. Its value is a number of code units, not characters.
  1702. </P>
  1703. <br><b>
  1704. Setting an offset limit
  1705. </b><br>
  1706. <P>
  1707. The <b>offset_limit</b> modifier sets a limit for unanchored matches. If a match
  1708. cannot be found starting at or before this offset in the subject, a "no match"
  1709. return is given. The data value is a number of code units, not characters. When
  1710. this modifier is used, the <b>use_offset_limit</b> modifier must have been set
  1711. for the pattern; if not, an error is generated.
  1712. </P>
  1713. <br><b>
  1714. Setting the size of the output vector
  1715. </b><br>
  1716. <P>
  1717. The <b>ovector</b> modifier applies only to the subject line in which it
  1718. appears, though of course it can also be used to set a default in a
  1719. <b>#subject</b> command. It specifies the number of pairs of offsets that are
  1720. available for storing matching information. The default is 15.
  1721. </P>
  1722. <P>
  1723. A value of zero is useful when testing the POSIX API because it causes
  1724. <b>regexec()</b> to be called with a NULL capture vector. When not testing the
  1725. POSIX API, a value of zero is used to cause
  1726. <b>pcre2_match_data_create_from_pattern()</b> to be called, in order to create a
  1727. new match block of exactly the right size for the pattern. (It is not possible
  1728. to create a match block with a zero-length ovector; there is always at least
  1729. one pair of offsets.) The old match data block is freed.
  1730. </P>
  1731. <br><b>
  1732. Passing the subject as zero-terminated
  1733. </b><br>
  1734. <P>
  1735. By default, the subject string is passed to a native API matching function with
  1736. its correct length. In order to test the facility for passing a zero-terminated
  1737. string, the <b>zero_terminate</b> modifier is provided. It causes the length to
  1738. be passed as PCRE2_ZERO_TERMINATED. When matching via the POSIX interface,
  1739. this modifier is ignored, with a warning.
  1740. </P>
  1741. <P>
  1742. When testing <b>pcre2_substitute()</b>, this modifier also has the effect of
  1743. passing the replacement string as zero-terminated.
  1744. </P>
  1745. <br><b>
  1746. Passing a NULL context, subject, or replacement
  1747. </b><br>
  1748. <P>
  1749. Normally, <b>pcre2test</b> passes a context block to <b>pcre2_match()</b>,
  1750. <b>pcre2_dfa_match()</b>, <b>pcre2_jit_match()</b> or <b>pcre2_substitute()</b>.
  1751. If the <b>null_context</b> modifier is set, however, NULL is passed. This is for
  1752. testing that the matching and substitution functions behave correctly in this
  1753. case (they use default values). This modifier cannot be used with the
  1754. <b>find_limits</b>, <b>find_limits_noheap</b>, or <b>substitute_callout</b>
  1755. modifiers.
  1756. </P>
  1757. <P>
  1758. Similarly, for testing purposes, if the <b>null_subject</b> or
  1759. <b>null_replacement</b> modifier is set, the subject or replacement string
  1760. pointers are passed as NULL, respectively, to the relevant functions.
  1761. </P>
  1762. <br><a name="SEC12" href="#TOC1">THE ALTERNATIVE MATCHING FUNCTION</a><br>
  1763. <P>
  1764. By default, <b>pcre2test</b> uses the standard PCRE2 matching function,
  1765. <b>pcre2_match()</b> to match each subject line. PCRE2 also supports an
  1766. alternative matching function, <b>pcre2_dfa_match()</b>, which operates in a
  1767. different way, and has some restrictions. The differences between the two
  1768. functions are described in the
  1769. <a href="pcre2matching.html"><b>pcre2matching</b></a>
  1770. documentation.
  1771. </P>
  1772. <P>
  1773. If the <b>dfa</b> modifier is set, the alternative matching function is used.
  1774. This function finds all possible matches at a given point in the subject. If,
  1775. however, the <b>dfa_shortest</b> modifier is set, processing stops after the
  1776. first match is found. This is always the shortest possible match.
  1777. </P>
  1778. <br><a name="SEC13" href="#TOC1">DEFAULT OUTPUT FROM pcre2test</a><br>
  1779. <P>
  1780. This section describes the output when the normal matching function,
  1781. <b>pcre2_match()</b>, is being used.
  1782. </P>
  1783. <P>
  1784. When a match succeeds, <b>pcre2test</b> outputs the list of captured substrings,
  1785. starting with number 0 for the string that matched the whole pattern.
  1786. Otherwise, it outputs "No match" when the return is PCRE2_ERROR_NOMATCH, or
  1787. "Partial match:" followed by the partially matching substring when the
  1788. return is PCRE2_ERROR_PARTIAL. (Note that this is the
  1789. entire substring that was inspected during the partial match; it may include
  1790. characters before the actual match start if a lookbehind assertion, \K, \b,
  1791. or \B was involved.)
  1792. </P>
  1793. <P>
  1794. For any other return, <b>pcre2test</b> outputs the PCRE2 negative error number
  1795. and a short descriptive phrase. If the error is a failed UTF string check, the
  1796. code unit offset of the start of the failing character is also output. Here is
  1797. an example of an interactive <b>pcre2test</b> run.
  1798. <pre>
  1799. $ pcre2test
  1800. PCRE2 version 10.22 2016-07-29
  1801. re&#62; /^abc(\d+)/
  1802. data&#62; abc123
  1803. 0: abc123
  1804. 1: 123
  1805. data&#62; xyz
  1806. No match
  1807. </pre>
  1808. Unset capturing substrings that are not followed by one that is set are not
  1809. shown by <b>pcre2test</b> unless the <b>allcaptures</b> modifier is specified. In
  1810. the following example, there are two capturing substrings, but when the first
  1811. data line is matched, the second, unset substring is not shown. An "internal"
  1812. unset substring is shown as "&#60;unset&#62;", as for the second data line.
  1813. <pre>
  1814. re&#62; /(a)|(b)/
  1815. data&#62; a
  1816. 0: a
  1817. 1: a
  1818. data&#62; b
  1819. 0: b
  1820. 1: &#60;unset&#62;
  1821. 2: b
  1822. </pre>
  1823. If the strings contain any non-printing characters, they are output as \xhh
  1824. escapes if the value is less than 256 and UTF mode is not set. Otherwise they
  1825. are output as \x{hh...} escapes. See below for the definition of non-printing
  1826. characters. If the <b>aftertext</b> modifier is set, the output for substring 0
  1827. is followed by the rest of the subject string, identified by "0+" like this:
  1828. <pre>
  1829. re&#62; /cat/aftertext
  1830. data&#62; cataract
  1831. 0: cat
  1832. 0+ aract
  1833. </pre>
  1834. If global matching is requested, the results of successive matching attempts
  1835. are output in sequence, like this:
  1836. <pre>
  1837. re&#62; /\Bi(\w\w)/g
  1838. data&#62; Mississippi
  1839. 0: iss
  1840. 1: ss
  1841. 0: iss
  1842. 1: ss
  1843. 0: ipp
  1844. 1: pp
  1845. </pre>
  1846. "No match" is output only if the first match attempt fails. Here is an example
  1847. of a failure message (the offset 4 that is specified by the <b>offset</b>
  1848. modifier is past the end of the subject string):
  1849. <pre>
  1850. re&#62; /xyz/
  1851. data&#62; xyz\=offset=4
  1852. Error -24 (bad offset value)
  1853. </PRE>
  1854. </P>
  1855. <P>
  1856. Note that whereas patterns can be continued over several lines (a plain "&#62;"
  1857. prompt is used for continuations), subject lines may not. However newlines can
  1858. be included in a subject by means of the \n escape (or \r, \r\n, etc.,
  1859. depending on the newline sequence setting).
  1860. </P>
  1861. <br><a name="SEC14" href="#TOC1">OUTPUT FROM THE ALTERNATIVE MATCHING FUNCTION</a><br>
  1862. <P>
  1863. When the alternative matching function, <b>pcre2_dfa_match()</b>, is used, the
  1864. output consists of a list of all the matches that start at the first point in
  1865. the subject where there is at least one match. For example:
  1866. <pre>
  1867. re&#62; /(tang|tangerine|tan)/
  1868. data&#62; yellow tangerine\=dfa
  1869. 0: tangerine
  1870. 1: tang
  1871. 2: tan
  1872. </pre>
  1873. Using the normal matching function on this data finds only "tang". The
  1874. longest matching string is always given first (and numbered zero). After a
  1875. PCRE2_ERROR_PARTIAL return, the output is "Partial match:", followed by the
  1876. partially matching substring. Note that this is the entire substring that was
  1877. inspected during the partial match; it may include characters before the actual
  1878. match start if a lookbehind assertion, \b, or \B was involved. (\K is not
  1879. supported for DFA matching.)
  1880. </P>
  1881. <P>
  1882. If global matching is requested, the search for further matches resumes
  1883. at the end of the longest match. For example:
  1884. <pre>
  1885. re&#62; /(tang|tangerine|tan)/g
  1886. data&#62; yellow tangerine and tangy sultana\=dfa
  1887. 0: tangerine
  1888. 1: tang
  1889. 2: tan
  1890. 0: tang
  1891. 1: tan
  1892. 0: tan
  1893. </pre>
  1894. The alternative matching function does not support substring capture, so the
  1895. modifiers that are concerned with captured substrings are not relevant.
  1896. </P>
  1897. <br><a name="SEC15" href="#TOC1">RESTARTING AFTER A PARTIAL MATCH</a><br>
  1898. <P>
  1899. When the alternative matching function has given the PCRE2_ERROR_PARTIAL
  1900. return, indicating that the subject partially matched the pattern, you can
  1901. restart the match with additional subject data by means of the
  1902. <b>dfa_restart</b> modifier. For example:
  1903. <pre>
  1904. re&#62; /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
  1905. data&#62; 23ja\=ps,dfa
  1906. Partial match: 23ja
  1907. data&#62; n05\=dfa,dfa_restart
  1908. 0: n05
  1909. </pre>
  1910. For further information about partial matching, see the
  1911. <a href="pcre2partial.html"><b>pcre2partial</b></a>
  1912. documentation.
  1913. <a name="callouts"></a></P>
  1914. <br><a name="SEC16" href="#TOC1">CALLOUTS</a><br>
  1915. <P>
  1916. If the pattern contains any callout requests, <b>pcre2test</b>'s callout
  1917. function is called during matching unless <b>callout_none</b> is specified. This
  1918. works with both matching functions, and with JIT, though there are some
  1919. differences in behaviour. The output for callouts with numerical arguments and
  1920. those with string arguments is slightly different.
  1921. </P>
  1922. <br><b>
  1923. Callouts with numerical arguments
  1924. </b><br>
  1925. <P>
  1926. By default, the callout function displays the callout number, the start and
  1927. current positions in the subject text at the callout time, and the next pattern
  1928. item to be tested. For example:
  1929. <pre>
  1930. ---&#62;pqrabcdef
  1931. 0 ^ ^ \d
  1932. </pre>
  1933. This output indicates that callout number 0 occurred for a match attempt
  1934. starting at the fourth character of the subject string, when the pointer was at
  1935. the seventh character, and when the next pattern item was \d. Just
  1936. one circumflex is output if the start and current positions are the same, or if
  1937. the current position precedes the start position, which can happen if the
  1938. callout is in a lookbehind assertion.
  1939. </P>
  1940. <P>
  1941. Callouts numbered 255 are assumed to be automatic callouts, inserted as a
  1942. result of the <b>auto_callout</b> pattern modifier. In this case, instead of
  1943. showing the callout number, the offset in the pattern, preceded by a plus, is
  1944. output. For example:
  1945. <pre>
  1946. re&#62; /\d?[A-E]\*/auto_callout
  1947. data&#62; E*
  1948. ---&#62;E*
  1949. +0 ^ \d?
  1950. +3 ^ [A-E]
  1951. +8 ^^ \*
  1952. +10 ^ ^
  1953. 0: E*
  1954. </pre>
  1955. If a pattern contains (*MARK) items, an additional line is output whenever
  1956. a change of latest mark is passed to the callout function. For example:
  1957. <pre>
  1958. re&#62; /a(*MARK:X)bc/auto_callout
  1959. data&#62; abc
  1960. ---&#62;abc
  1961. +0 ^ a
  1962. +1 ^^ (*MARK:X)
  1963. +10 ^^ b
  1964. Latest Mark: X
  1965. +11 ^ ^ c
  1966. +12 ^ ^
  1967. 0: abc
  1968. </pre>
  1969. The mark changes between matching "a" and "b", but stays the same for the rest
  1970. of the match, so nothing more is output. If, as a result of backtracking, the
  1971. mark reverts to being unset, the text "&#60;unset&#62;" is output.
  1972. </P>
  1973. <br><b>
  1974. Callouts with string arguments
  1975. </b><br>
  1976. <P>
  1977. The output for a callout with a string argument is similar, except that instead
  1978. of outputting a callout number before the position indicators, the callout
  1979. string and its offset in the pattern string are output before the reflection of
  1980. the subject string, and the subject string is reflected for each callout. For
  1981. example:
  1982. <pre>
  1983. re&#62; /^ab(?C'first')cd(?C"second")ef/
  1984. data&#62; abcdefg
  1985. Callout (7): 'first'
  1986. ---&#62;abcdefg
  1987. ^ ^ c
  1988. Callout (20): "second"
  1989. ---&#62;abcdefg
  1990. ^ ^ e
  1991. 0: abcdef
  1992. </PRE>
  1993. </P>
  1994. <br><b>
  1995. Callout modifiers
  1996. </b><br>
  1997. <P>
  1998. The callout function in <b>pcre2test</b> returns zero (carry on matching) by
  1999. default, but you can use a <b>callout_fail</b> modifier in a subject line to
  2000. change this and other parameters of the callout (see below).
  2001. </P>
  2002. <P>
  2003. If the <b>callout_capture</b> modifier is set, the current captured groups are
  2004. output when a callout occurs. This is useful only for non-DFA matching, as
  2005. <b>pcre2_dfa_match()</b> does not support capturing, so no captures are ever
  2006. shown.
  2007. </P>
  2008. <P>
  2009. The normal callout output, showing the callout number or pattern offset (as
  2010. described above) is suppressed if the <b>callout_no_where</b> modifier is set.
  2011. </P>
  2012. <P>
  2013. When using the interpretive matching function <b>pcre2_match()</b> without JIT,
  2014. setting the <b>callout_extra</b> modifier causes additional output from
  2015. <b>pcre2test</b>'s callout function to be generated. For the first callout in a
  2016. match attempt at a new starting position in the subject, "New match attempt" is
  2017. output. If there has been a backtrack since the last callout (or start of
  2018. matching if this is the first callout), "Backtrack" is output, followed by "No
  2019. other matching paths" if the backtrack ended the previous match attempt. For
  2020. example:
  2021. <pre>
  2022. re&#62; /(a+)b/auto_callout,no_start_optimize,no_auto_possess
  2023. data&#62; aac\=callout_extra
  2024. New match attempt
  2025. ---&#62;aac
  2026. +0 ^ (
  2027. +1 ^ a+
  2028. +3 ^ ^ )
  2029. +4 ^ ^ b
  2030. Backtrack
  2031. ---&#62;aac
  2032. +3 ^^ )
  2033. +4 ^^ b
  2034. Backtrack
  2035. No other matching paths
  2036. New match attempt
  2037. ---&#62;aac
  2038. +0 ^ (
  2039. +1 ^ a+
  2040. +3 ^^ )
  2041. +4 ^^ b
  2042. Backtrack
  2043. No other matching paths
  2044. New match attempt
  2045. ---&#62;aac
  2046. +0 ^ (
  2047. +1 ^ a+
  2048. Backtrack
  2049. No other matching paths
  2050. New match attempt
  2051. ---&#62;aac
  2052. +0 ^ (
  2053. +1 ^ a+
  2054. No match
  2055. </pre>
  2056. Notice that various optimizations must be turned off if you want all possible
  2057. matching paths to be scanned. If <b>no_start_optimize</b> is not used, there is
  2058. an immediate "no match", without any callouts, because the starting
  2059. optimization fails to find "b" in the subject, which it knows must be present
  2060. for any match. If <b>no_auto_possess</b> is not used, the "a+" item is turned
  2061. into "a++", which reduces the number of backtracks.
  2062. </P>
  2063. <P>
  2064. The <b>callout_extra</b> modifier has no effect if used with the DFA matching
  2065. function, or with JIT.
  2066. </P>
  2067. <br><b>
  2068. Return values from callouts
  2069. </b><br>
  2070. <P>
  2071. The default return from the callout function is zero, which allows matching to
  2072. continue. The <b>callout_fail</b> modifier can be given one or two numbers. If
  2073. there is only one number, 1 is returned instead of 0 (causing matching to
  2074. backtrack) when a callout of that number is reached. If two numbers (&#60;n&#62;:&#60;m&#62;)
  2075. are given, 1 is returned when callout &#60;n&#62; is reached and there have been at
  2076. least &#60;m&#62; callouts. The <b>callout_error</b> modifier is similar, except that
  2077. PCRE2_ERROR_CALLOUT is returned, causing the entire matching process to be
  2078. aborted. If both these modifiers are set for the same callout number,
  2079. <b>callout_error</b> takes precedence. Note that callouts with string arguments
  2080. are always given the number zero.
  2081. </P>
  2082. <P>
  2083. The <b>callout_data</b> modifier can be given an unsigned or a negative number.
  2084. This is set as the "user data" that is passed to the matching function, and
  2085. passed back when the callout function is invoked. Any value other than zero is
  2086. used as a return from <b>pcre2test</b>'s callout function.
  2087. </P>
  2088. <P>
  2089. Inserting callouts can be helpful when using <b>pcre2test</b> to check
  2090. complicated regular expressions. For further information about callouts, see
  2091. the
  2092. <a href="pcre2callout.html"><b>pcre2callout</b></a>
  2093. documentation.
  2094. </P>
  2095. <br><a name="SEC17" href="#TOC1">NON-PRINTING CHARACTERS</a><br>
  2096. <P>
  2097. When <b>pcre2test</b> is outputting text in the compiled version of a pattern,
  2098. bytes other than 32-126 are always treated as non-printing characters and are
  2099. therefore shown as hex escapes.
  2100. </P>
  2101. <P>
  2102. When <b>pcre2test</b> is outputting text that is a matched part of a subject
  2103. string, it behaves in the same way, unless a different locale has been set for
  2104. the pattern (using the <b>locale</b> modifier). In this case, the
  2105. <b>isprint()</b> function is used to distinguish printing and non-printing
  2106. characters.
  2107. <a name="saverestore"></a></P>
  2108. <br><a name="SEC18" href="#TOC1">SAVING AND RESTORING COMPILED PATTERNS</a><br>
  2109. <P>
  2110. It is possible to save compiled patterns on disc or elsewhere, and reload them
  2111. later, subject to a number of restrictions. JIT data cannot be saved. The host
  2112. on which the patterns are reloaded must be running the same version of PCRE2,
  2113. with the same code unit width, and must also have the same endianness, pointer
  2114. width and PCRE2_SIZE type. Before compiled patterns can be saved they must be
  2115. serialized, that is, converted to a stream of bytes. A single byte stream may
  2116. contain any number of compiled patterns, but they must all use the same
  2117. character tables. A single copy of the tables is included in the byte stream
  2118. (its size is 1088 bytes).
  2119. </P>
  2120. <P>
  2121. The functions whose names begin with <b>pcre2_serialize_</b> are used
  2122. for serializing and de-serializing. They are described in the
  2123. <a href="pcre2serialize.html"><b>pcre2serialize</b></a>
  2124. documentation. In this section we describe the features of <b>pcre2test</b> that
  2125. can be used to test these functions.
  2126. </P>
  2127. <P>
  2128. Note that "serialization" in PCRE2 does not convert compiled patterns to an
  2129. abstract format like Java or .NET. It just makes a reloadable byte code stream.
  2130. Hence the restrictions on reloading mentioned above.
  2131. </P>
  2132. <P>
  2133. In <b>pcre2test</b>, when a pattern with <b>push</b> modifier is successfully
  2134. compiled, it is pushed onto a stack of compiled patterns, and <b>pcre2test</b>
  2135. expects the next line to contain a new pattern (or command) instead of a
  2136. subject line. By contrast, the <b>pushcopy</b> modifier causes a copy of the
  2137. compiled pattern to be stacked, leaving the original available for immediate
  2138. matching. By using <b>push</b> and/or <b>pushcopy</b>, a number of patterns can
  2139. be compiled and retained. These modifiers are incompatible with <b>posix</b>,
  2140. and control modifiers that act at match time are ignored (with a message) for
  2141. the stacked patterns. The <b>jitverify</b> modifier applies only at compile
  2142. time.
  2143. </P>
  2144. <P>
  2145. The command
  2146. <pre>
  2147. #save &#60;filename&#62;
  2148. </pre>
  2149. causes all the stacked patterns to be serialized and the result written to the
  2150. named file. Afterwards, all the stacked patterns are freed. The command
  2151. <pre>
  2152. #load &#60;filename&#62;
  2153. </pre>
  2154. reads the data in the file, and then arranges for it to be de-serialized, with
  2155. the resulting compiled patterns added to the pattern stack. The pattern on the
  2156. top of the stack can be retrieved by the #pop command, which must be followed
  2157. by lines of subjects that are to be matched with the pattern, terminated as
  2158. usual by an empty line or end of file. This command may be followed by a
  2159. modifier list containing only
  2160. <a href="#controlmodifiers">control modifiers</a>
  2161. that act after a pattern has been compiled. In particular, <b>hex</b>,
  2162. <b>posix</b>, <b>posix_nosub</b>, <b>push</b>, and <b>pushcopy</b> are not allowed,
  2163. nor are any
  2164. <a href="#optionmodifiers">option-setting modifiers.</a>
  2165. The JIT modifiers are, however permitted. Here is an example that saves and
  2166. reloads two patterns.
  2167. <pre>
  2168. /abc/push
  2169. /xyz/push
  2170. #save tempfile
  2171. #load tempfile
  2172. #pop info
  2173. xyz
  2174. #pop jit,bincode
  2175. abc
  2176. </pre>
  2177. If <b>jitverify</b> is used with #pop, it does not automatically imply
  2178. <b>jit</b>, which is different behaviour from when it is used on a pattern.
  2179. </P>
  2180. <P>
  2181. The #popcopy command is analogous to the <b>pushcopy</b> modifier in that it
  2182. makes current a copy of the topmost stack pattern, leaving the original still
  2183. on the stack.
  2184. </P>
  2185. <br><a name="SEC19" href="#TOC1">SEE ALSO</a><br>
  2186. <P>
  2187. <b>pcre2</b>(3), <b>pcre2api</b>(3), <b>pcre2callout</b>(3),
  2188. <b>pcre2jit</b>, <b>pcre2matching</b>(3), <b>pcre2partial</b>(d),
  2189. <b>pcre2pattern</b>(3), <b>pcre2serialize</b>(3).
  2190. </P>
  2191. <br><a name="SEC20" href="#TOC1">AUTHOR</a><br>
  2192. <P>
  2193. Philip Hazel
  2194. <br>
  2195. Retired from University Computing Service
  2196. <br>
  2197. Cambridge, England.
  2198. <br>
  2199. </P>
  2200. <br><a name="SEC21" href="#TOC1">REVISION</a><br>
  2201. <P>
  2202. Last updated: 24 April 2024
  2203. <br>
  2204. Copyright &copy; 1997-2024 University of Cambridge.
  2205. <br>
  2206. <p>
  2207. Return to the <a href="index.html">PCRE2 index page</a>.
  2208. </p>