pcre2test.html 91 KB

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