blob: c883064d8d8b3de0864b27119fad7879c27c3600 [file] [log] [blame]
Tristan Matthews04616462013-11-14 16:09:34 -05001<html>
2<head>
3<title>pcretest specification</title>
4</head>
5<body bgcolor="#FFFFFF" text="#00005A" link="#0066FF" alink="#3399FF" vlink="#2222BB">
6<h1>pcretest man page</h1>
7<p>
8Return to the <a href="index.html">PCRE index page</a>.
9</p>
10<p>
11This page is part of the PCRE HTML documentation. It was generated automatically
12from the original man page. If there is any nonsense in it, please consult the
13man 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">COMMAND LINE OPTIONS</a>
18<li><a name="TOC3" href="#SEC3">DESCRIPTION</a>
19<li><a name="TOC4" href="#SEC4">PATTERN MODIFIERS</a>
20<li><a name="TOC5" href="#SEC5">DATA LINES</a>
21<li><a name="TOC6" href="#SEC6">THE ALTERNATIVE MATCHING FUNCTION</a>
22<li><a name="TOC7" href="#SEC7">DEFAULT OUTPUT FROM PCRETEST</a>
23<li><a name="TOC8" href="#SEC8">OUTPUT FROM THE ALTERNATIVE MATCHING FUNCTION</a>
24<li><a name="TOC9" href="#SEC9">RESTARTING AFTER A PARTIAL MATCH</a>
25<li><a name="TOC10" href="#SEC10">CALLOUTS</a>
26<li><a name="TOC11" href="#SEC11">NON-PRINTING CHARACTERS</a>
27<li><a name="TOC12" href="#SEC12">SAVING AND RELOADING COMPILED PATTERNS</a>
28<li><a name="TOC13" href="#SEC13">SEE ALSO</a>
29<li><a name="TOC14" href="#SEC14">AUTHOR</a>
30<li><a name="TOC15" href="#SEC15">REVISION</a>
31</ul>
32<br><a name="SEC1" href="#TOC1">SYNOPSIS</a><br>
33<P>
34<b>pcretest [options] [input file [output file]]</b>
35<br>
36<br>
37<b>pcretest</b> was written as a test program for the PCRE regular expression
38library itself, but it can also be used for experimenting with regular
39expressions. This document describes the features of the test program; for
40details of the regular expressions themselves, see the
41<a href="pcrepattern.html"><b>pcrepattern</b></a>
42documentation. For details of the PCRE library function calls and their
43options, see the
44<a href="pcreapi.html"><b>pcreapi</b></a>
45documentation. The input for <b>pcretest</b> is a sequence of regular expression
46patterns and strings to be matched, as described below. The output shows the
47result of each match. Options on the command line and the patterns control PCRE
48options and exactly what is output.
49</P>
50<br><a name="SEC2" href="#TOC1">COMMAND LINE OPTIONS</a><br>
51<P>
52<b>-b</b>
53Behave as if each pattern has the <b>/B</b> (show byte code) modifier; the
54internal form is output after compilation.
55</P>
56<P>
57<b>-C</b>
58Output the version number of the PCRE library, and all available information
59about the optional features that are included, and then exit.
60</P>
61<P>
62<b>-d</b>
63Behave as if each pattern has the <b>/D</b> (debug) modifier; the internal
64form and information about the compiled pattern is output after compilation;
65<b>-d</b> is equivalent to <b>-b -i</b>.
66</P>
67<P>
68<b>-dfa</b>
69Behave as if each data line contains the \D escape sequence; this causes the
70alternative matching function, <b>pcre_dfa_exec()</b>, to be used instead of the
71standard <b>pcre_exec()</b> function (more detail is given below).
72</P>
73<P>
74<b>-help</b>
75Output a brief summary these options and then exit.
76</P>
77<P>
78<b>-i</b>
79Behave as if each pattern has the <b>/I</b> modifier; information about the
80compiled pattern is given after compilation.
81</P>
82<P>
83<b>-M</b>
84Behave as if each data line contains the \M escape sequence; this causes
85PCRE to discover the minimum MATCH_LIMIT and MATCH_LIMIT_RECURSION settings by
86calling <b>pcre_exec()</b> repeatedly with different limits.
87</P>
88<P>
89<b>-m</b>
90Output the size of each compiled pattern after it has been compiled. This is
91equivalent to adding <b>/M</b> to each regular expression.
92</P>
93<P>
94<b>-o</b> <i>osize</i>
95Set the number of elements in the output vector that is used when calling
96<b>pcre_exec()</b> or <b>pcre_dfa_exec()</b> to be <i>osize</i>. The default value
97is 45, which is enough for 14 capturing subexpressions for <b>pcre_exec()</b> or
9822 different matches for <b>pcre_dfa_exec()</b>. The vector size can be
99changed for individual matching calls by including \O in the data line (see
100below).
101</P>
102<P>
103<b>-p</b>
104Behave as if each pattern has the <b>/P</b> modifier; the POSIX wrapper API is
105used to call PCRE. None of the other options has any effect when <b>-p</b> is
106set.
107</P>
108<P>
109<b>-q</b>
110Do not output the version number of <b>pcretest</b> at the start of execution.
111</P>
112<P>
113<b>-S</b> <i>size</i>
114On Unix-like systems, set the size of the run-time stack to <i>size</i>
115megabytes.
116</P>
117<P>
118<b>-s</b> or <b>-s+</b>
119Behave as if each pattern has the <b>/S</b> modifier; in other words, force each
120pattern to be studied. If <b>-s+</b> is used, the PCRE_STUDY_JIT_COMPILE flag is
121passed to <b>pcre_study()</b>, causing just-in-time optimization to be set up if
122it is available. If the <b>/I</b> or <b>/D</b> option is present on a pattern
123(requesting output about the compiled pattern), information about the result of
124studying is not included when studying is caused only by <b>-s</b> and neither
125<b>-i</b> nor <b>-d</b> is present on the command line. This behaviour means that
126the output from tests that are run with and without <b>-s</b> should be
127identical, except when options that output information about the actual running
128of a match are set. The <b>-M</b>, <b>-t</b>, and <b>-tm</b> options, which give
129information about resources used, are likely to produce different output with
130and without <b>-s</b>. Output may also differ if the <b>/C</b> option is present
131on an individual pattern. This uses callouts to trace the the matching process,
132and this may be different between studied and non-studied patterns. If the
133pattern contains (*MARK) items there may also be differences, for the same
134reason. The <b>-s</b> command line option can be overridden for specific
135patterns that should never be studied (see the <b>/S</b> pattern modifier
136below).
137</P>
138<P>
139<b>-t</b>
140Run each compile, study, and match many times with a timer, and output
141resulting time per compile or match (in milliseconds). Do not set <b>-m</b> with
142<b>-t</b>, because you will then get the size output a zillion times, and the
143timing will be distorted. You can control the number of iterations that are
144used for timing by following <b>-t</b> with a number (as a separate item on the
145command line). For example, "-t 1000" would iterate 1000 times. The default is
146to iterate 500000 times.
147</P>
148<P>
149<b>-tm</b>
150This is like <b>-t</b> except that it times only the matching phase, not the
151compile or study phases.
152</P>
153<br><a name="SEC3" href="#TOC1">DESCRIPTION</a><br>
154<P>
155If <b>pcretest</b> is given two filename arguments, it reads from the first and
156writes to the second. If it is given only one filename argument, it reads from
157that file and writes to stdout. Otherwise, it reads from stdin and writes to
158stdout, and prompts for each line of input, using "re&#62;" to prompt for regular
159expressions, and "data&#62;" to prompt for data lines.
160</P>
161<P>
162When <b>pcretest</b> is built, a configuration option can specify that it should
163be linked with the <b>libreadline</b> library. When this is done, if the input
164is from a terminal, it is read using the <b>readline()</b> function. This
165provides line-editing and history facilities. The output from the <b>-help</b>
166option states whether or not <b>readline()</b> will be used.
167</P>
168<P>
169The program handles any number of sets of input on a single input file. Each
170set starts with a regular expression, and continues with any number of data
171lines to be matched against the pattern.
172</P>
173<P>
174Each data line is matched separately and independently. If you want to do
175multi-line matches, you have to use the \n escape sequence (or \r or \r\n,
176etc., depending on the newline setting) in a single line of input to encode the
177newline sequences. There is no limit on the length of data lines; the input
178buffer is automatically extended if it is too small.
179</P>
180<P>
181An empty line signals the end of the data lines, at which point a new regular
182expression is read. The regular expressions are given enclosed in any
183non-alphanumeric delimiters other than backslash, for example:
184<pre>
185 /(a|bc)x+yz/
186</pre>
187White space before the initial delimiter is ignored. A regular expression may
188be continued over several input lines, in which case the newline characters are
189included within it. It is possible to include the delimiter within the pattern
190by escaping it, for example
191<pre>
192 /abc\/def/
193</pre>
194If you do so, the escape and the delimiter form part of the pattern, but since
195delimiters are always non-alphanumeric, this does not affect its interpretation.
196If the terminating delimiter is immediately followed by a backslash, for
197example,
198<pre>
199 /abc/\
200</pre>
201then a backslash is added to the end of the pattern. This is done to provide a
202way of testing the error condition that arises if a pattern finishes with a
203backslash, because
204<pre>
205 /abc\/
206</pre>
207is interpreted as the first line of a pattern that starts with "abc/", causing
208pcretest to read the next line as a continuation of the regular expression.
209</P>
210<br><a name="SEC4" href="#TOC1">PATTERN MODIFIERS</a><br>
211<P>
212A pattern may be followed by any number of modifiers, which are mostly single
213characters. Following Perl usage, these are referred to below as, for example,
214"the <b>/i</b> modifier", even though the delimiter of the pattern need not
215always be a slash, and no slash is used when writing modifiers. White space may
216appear between the final pattern delimiter and the first modifier, and between
217the modifiers themselves.
218</P>
219<P>
220The <b>/i</b>, <b>/m</b>, <b>/s</b>, and <b>/x</b> modifiers set the PCRE_CASELESS,
221PCRE_MULTILINE, PCRE_DOTALL, or PCRE_EXTENDED options, respectively, when
222<b>pcre_compile()</b> is called. These four modifier letters have the same
223effect as they do in Perl. For example:
224<pre>
225 /caseless/i
226</pre>
227The following table shows additional modifiers for setting PCRE compile-time
228options that do not correspond to anything in Perl:
229<pre>
230 <b>/8</b> PCRE_UTF8
231 <b>/?</b> PCRE_NO_UTF8_CHECK
232 <b>/A</b> PCRE_ANCHORED
233 <b>/C</b> PCRE_AUTO_CALLOUT
234 <b>/E</b> PCRE_DOLLAR_ENDONLY
235 <b>/f</b> PCRE_FIRSTLINE
236 <b>/J</b> PCRE_DUPNAMES
237 <b>/N</b> PCRE_NO_AUTO_CAPTURE
238 <b>/U</b> PCRE_UNGREEDY
239 <b>/W</b> PCRE_UCP
240 <b>/X</b> PCRE_EXTRA
241 <b>/Y</b> PCRE_NO_START_OPTIMIZE
242 <b>/&#60;JS&#62;</b> PCRE_JAVASCRIPT_COMPAT
243 <b>/&#60;cr&#62;</b> PCRE_NEWLINE_CR
244 <b>/&#60;lf&#62;</b> PCRE_NEWLINE_LF
245 <b>/&#60;crlf&#62;</b> PCRE_NEWLINE_CRLF
246 <b>/&#60;anycrlf&#62;</b> PCRE_NEWLINE_ANYCRLF
247 <b>/&#60;any&#62;</b> PCRE_NEWLINE_ANY
248 <b>/&#60;bsr_anycrlf&#62;</b> PCRE_BSR_ANYCRLF
249 <b>/&#60;bsr_unicode&#62;</b> PCRE_BSR_UNICODE
250</pre>
251The modifiers that are enclosed in angle brackets are literal strings as shown,
252including the angle brackets, but the letters within can be in either case.
253This example sets multiline matching with CRLF as the line ending sequence:
254<pre>
255 /^abc/m&#60;CRLF&#62;
256</pre>
257As well as turning on the PCRE_UTF8 option, the <b>/8</b> modifier also causes
258any non-printing characters in output strings to be printed using the
259\x{hh...} notation if they are valid UTF-8 sequences. Full details of the PCRE
260options are given in the
261<a href="pcreapi.html"><b>pcreapi</b></a>
262documentation.
263</P>
264<br><b>
265Finding all matches in a string
266</b><br>
267<P>
268Searching for all possible matches within each subject string can be requested
269by the <b>/g</b> or <b>/G</b> modifier. After finding a match, PCRE is called
270again to search the remainder of the subject string. The difference between
271<b>/g</b> and <b>/G</b> is that the former uses the <i>startoffset</i> argument to
272<b>pcre_exec()</b> to start searching at a new point within the entire string
273(which is in effect what Perl does), whereas the latter passes over a shortened
274substring. This makes a difference to the matching process if the pattern
275begins with a lookbehind assertion (including \b or \B).
276</P>
277<P>
278If any call to <b>pcre_exec()</b> in a <b>/g</b> or <b>/G</b> sequence matches an
279empty string, the next call is done with the PCRE_NOTEMPTY_ATSTART and
280PCRE_ANCHORED flags set in order to search for another, non-empty, match at the
281same point. If this second match fails, the start offset is advanced, and the
282normal match is retried. This imitates the way Perl handles such cases when
283using the <b>/g</b> modifier or the <b>split()</b> function. Normally, the start
284offset is advanced by one character, but if the newline convention recognizes
285CRLF as a newline, and the current character is CR followed by LF, an advance
286of two is used.
287</P>
288<br><b>
289Other modifiers
290</b><br>
291<P>
292There are yet more modifiers for controlling the way <b>pcretest</b>
293operates.
294</P>
295<P>
296The <b>/+</b> modifier requests that as well as outputting the substring that
297matched the entire pattern, <b>pcretest</b> should in addition output the
298remainder of the subject string. This is useful for tests where the subject
299contains multiple copies of the same substring. If the <b>+</b> modifier appears
300twice, the same action is taken for captured substrings. In each case the
301remainder is output on the following line with a plus character following the
302capture number. Note that this modifier must not immediately follow the /S
303modifier because /S+ has another meaning.
304</P>
305<P>
306The <b>/=</b> modifier requests that the values of all potential captured
307parentheses be output after a match by <b>pcre_exec()</b>. By default, only
308those up to the highest one actually used in the match are output
309(corresponding to the return code from <b>pcre_exec()</b>). Values in the
310offsets vector corresponding to higher numbers should be set to -1, and these
311are output as "&#60;unset&#62;". This modifier gives a way of checking that this is
312happening.
313</P>
314<P>
315The <b>/B</b> modifier is a debugging feature. It requests that <b>pcretest</b>
316output a representation of the compiled byte code after compilation. Normally
317this information contains length and offset values; however, if <b>/Z</b> is
318also present, this data is replaced by spaces. This is a special feature for
319use in the automatic test scripts; it ensures that the same output is generated
320for different internal link sizes.
321</P>
322<P>
323The <b>/D</b> modifier is a PCRE debugging feature, and is equivalent to
324<b>/BI</b>, that is, both the <b>/B</b> and the <b>/I</b> modifiers.
325</P>
326<P>
327The <b>/F</b> modifier causes <b>pcretest</b> to flip the byte order of the
328fields in the compiled pattern that contain 2-byte and 4-byte numbers. This
329facility is for testing the feature in PCRE that allows it to execute patterns
330that were compiled on a host with a different endianness. This feature is not
331available when the POSIX interface to PCRE is being used, that is, when the
332<b>/P</b> pattern modifier is specified. See also the section about saving and
333reloading compiled patterns below.
334</P>
335<P>
336The <b>/I</b> modifier requests that <b>pcretest</b> output information about the
337compiled pattern (whether it is anchored, has a fixed first character, and
338so on). It does this by calling <b>pcre_fullinfo()</b> after compiling a
339pattern. If the pattern is studied, the results of that are also output.
340</P>
341<P>
342The <b>/K</b> modifier requests <b>pcretest</b> to show names from backtracking
343control verbs that are returned from calls to <b>pcre_exec()</b>. It causes
344<b>pcretest</b> to create a <b>pcre_extra</b> block if one has not already been
345created by a call to <b>pcre_study()</b>, and to set the PCRE_EXTRA_MARK flag
346and the <b>mark</b> field within it, every time that <b>pcre_exec()</b> is
347called. If the variable that the <b>mark</b> field points to is non-NULL for a
348match, non-match, or partial match, <b>pcretest</b> prints the string to which
349it points. For a match, this is shown on a line by itself, tagged with "MK:".
350For a non-match it is added to the message.
351</P>
352<P>
353The <b>/L</b> modifier must be followed directly by the name of a locale, for
354example,
355<pre>
356 /pattern/Lfr_FR
357</pre>
358For this reason, it must be the last modifier. The given locale is set,
359<b>pcre_maketables()</b> is called to build a set of character tables for the
360locale, and this is then passed to <b>pcre_compile()</b> when compiling the
361regular expression. Without an <b>/L</b> (or <b>/T</b>) modifier, NULL is passed
362as the tables pointer; that is, <b>/L</b> applies only to the expression on
363which it appears.
364</P>
365<P>
366The <b>/M</b> modifier causes the size of memory block used to hold the compiled
367pattern to be output. This does not include the size of the <b>pcre</b> block;
368it is just the actual compiled data. If the pattern is successfully studied
369with the PCRE_STUDY_JIT_COMPILE option, the size of the JIT compiled code is
370also output.
371</P>
372<P>
373If the <b>/S</b> modifier appears once, it causes <b>pcre_study()</b> to be
374called after the expression has been compiled, and the results used when the
375expression is matched. If <b>/S</b> appears twice, it suppresses studying, even
376if it was requested externally by the <b>-s</b> command line option. This makes
377it possible to specify that certain patterns are always studied, and others are
378never studied, independently of <b>-s</b>. This feature is used in the test
379files in a few cases where the output is different when the pattern is studied.
380</P>
381<P>
382If the <b>/S</b> modifier is immediately followed by a + character, the call to
383<b>pcre_study()</b> is made with the PCRE_STUDY_JIT_COMPILE option, requesting
384just-in-time optimization support if it is available. Note that there is also a
385<b>/+</b> modifier; it must not be given immediately after <b>/S</b> because this
386will be misinterpreted. If JIT studying is successful, it will automatically be
387used when <b>pcre_exec()</b> is run, except when incompatible run-time options
388are specified. These include the partial matching options; a complete list is
389given in the
390<a href="pcrejit.html"><b>pcrejit</b></a>
391documentation. See also the <b>\J</b> escape sequence below for a way of
392setting the size of the JIT stack.
393</P>
394<P>
395The <b>/T</b> modifier must be followed by a single digit. It causes a specific
396set of built-in character tables to be passed to <b>pcre_compile()</b>. It is
397used in the standard PCRE tests to check behaviour with different character
398tables. The digit specifies the tables as follows:
399<pre>
400 0 the default ASCII tables, as distributed in
401 pcre_chartables.c.dist
402 1 a set of tables defining ISO 8859 characters
403</pre>
404In table 1, some characters whose codes are greater than 128 are identified as
405letters, digits, spaces, etc.
406</P>
407<br><b>
408Using the POSIX wrapper API
409</b><br>
410<P>
411The <b>/P</b> modifier causes <b>pcretest</b> to call PCRE via the POSIX wrapper
412API rather than its native API. When <b>/P</b> is set, the following modifiers
413set options for the <b>regcomp()</b> function:
414<pre>
415 /i REG_ICASE
416 /m REG_NEWLINE
417 /N REG_NOSUB
418 /s REG_DOTALL )
419 /U REG_UNGREEDY ) These options are not part of
420 /W REG_UCP ) the POSIX standard
421 /8 REG_UTF8 )
422</pre>
423The <b>/+</b> modifier works as described above. All other modifiers are
424ignored.
425</P>
426<br><a name="SEC5" href="#TOC1">DATA LINES</a><br>
427<P>
428Before each data line is passed to <b>pcre_exec()</b>, leading and trailing
429white space is removed, and it is then scanned for \ escapes. Some of these
430are pretty esoteric features, intended for checking out some of the more
431complicated features of PCRE. If you are just testing "ordinary" regular
432expressions, you probably don't need any of these. The following escapes are
433recognized:
434<pre>
435 \a alarm (BEL, \x07)
436 \b backspace (\x08)
437 \e escape (\x27)
438 \f form feed (\x0c)
439 \n newline (\x0a)
440 \qdd set the PCRE_MATCH_LIMIT limit to dd (any number of digits)
441 \r carriage return (\x0d)
442 \t tab (\x09)
443 \v vertical tab (\x0b)
444 \nnn octal character (up to 3 octal digits)
445 always a byte unless &#62; 255 in UTF-8 mode
446 \xhh hexadecimal byte (up to 2 hex digits)
447 \x{hh...} hexadecimal character, any number of digits in UTF-8 mode
448 \A pass the PCRE_ANCHORED option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
449 \B pass the PCRE_NOTBOL option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
450 \Cdd call pcre_copy_substring() for substring dd after a successful match (number less than 32)
451 \Cname call pcre_copy_named_substring() for substring "name" after a successful match (name termin-
452 ated by next non alphanumeric character)
453 \C+ show the current captured substrings at callout time
454 \C- do not supply a callout function
455 \C!n return 1 instead of 0 when callout number n is reached
456 \C!n!m return 1 instead of 0 when callout number n is reached for the nth time
457 \C*n pass the number n (may be negative) as callout data; this is used as the callout return value
458 \D use the <b>pcre_dfa_exec()</b> match function
459 \F only shortest match for <b>pcre_dfa_exec()</b>
460 \Gdd call pcre_get_substring() for substring dd after a successful match (number less than 32)
461 \Gname call pcre_get_named_substring() for substring "name" after a successful match (name termin-
462 ated by next non-alphanumeric character)
463 \Jdd set up a JIT stack of dd kilobytes maximum (any number of digits)
464 \L call pcre_get_substringlist() after a successful match
465 \M discover the minimum MATCH_LIMIT and MATCH_LIMIT_RECURSION settings
466 \N pass the PCRE_NOTEMPTY option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>; if used twice, pass the
467 PCRE_NOTEMPTY_ATSTART option
468 \Odd set the size of the output vector passed to <b>pcre_exec()</b> to dd (any number of digits)
469 \P pass the PCRE_PARTIAL_SOFT option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>; if used twice, pass the
470 PCRE_PARTIAL_HARD option
471 \Qdd set the PCRE_MATCH_LIMIT_RECURSION limit to dd (any number of digits)
472 \R pass the PCRE_DFA_RESTART option to <b>pcre_dfa_exec()</b>
473 \S output details of memory get/free calls during matching
474 \Y pass the PCRE_NO_START_OPTIMIZE option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
475 \Z pass the PCRE_NOTEOL option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
476 \? pass the PCRE_NO_UTF8_CHECK option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
477 \&#62;dd start the match at offset dd (optional "-"; then any number of digits); this sets the <i>startoffset</i>
478 argument for <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
479 \&#60;cr&#62; pass the PCRE_NEWLINE_CR option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
480 \&#60;lf&#62; pass the PCRE_NEWLINE_LF option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
481 \&#60;crlf&#62; pass the PCRE_NEWLINE_CRLF option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
482 \&#60;anycrlf&#62; pass the PCRE_NEWLINE_ANYCRLF option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
483 \&#60;any&#62; pass the PCRE_NEWLINE_ANY option to <b>pcre_exec()</b> or <b>pcre_dfa_exec()</b>
484</pre>
485Note that \xhh always specifies one byte, even in UTF-8 mode; this makes it
486possible to construct invalid UTF-8 sequences for testing purposes. On the
487other hand, \x{hh} is interpreted as a UTF-8 character in UTF-8 mode,
488generating more than one byte if the value is greater than 127. When not in
489UTF-8 mode, it generates one byte for values less than 256, and causes an error
490for greater values.
491</P>
492<P>
493The escapes that specify line ending sequences are literal strings, exactly as
494shown. No more than one newline setting should be present in any data line.
495</P>
496<P>
497A backslash followed by anything else just escapes the anything else. If
498the very last character is a backslash, it is ignored. This gives a way of
499passing an empty line as data, since a real empty line terminates the data
500input.
501</P>
502<P>
503The <b>\J</b> escape provides a way of setting the maximum stack size that is
504used by the just-in-time optimization code. It is ignored if JIT optimization
505is not being used. Providing a stack that is larger than the default 32K is
506necessary only for very complicated patterns.
507</P>
508<P>
509If \M is present, <b>pcretest</b> calls <b>pcre_exec()</b> several times, with
510different values in the <i>match_limit</i> and <i>match_limit_recursion</i>
511fields of the <b>pcre_extra</b> data structure, until it finds the minimum
512numbers for each parameter that allow <b>pcre_exec()</b> to complete without
513error. Because this is testing a specific feature of the normal interpretive
514<b>pcre_exec()</b> execution, the use of any JIT optimization that might have
515been set up by the <b>/S+</b> qualifier of <b>-s+</b> option is disabled.
516</P>
517<P>
518The <i>match_limit</i> number is a measure of the amount of backtracking
519that takes place, and checking it out can be instructive. For most simple
520matches, the number is quite small, but for patterns with very large numbers of
521matching possibilities, it can become large very quickly with increasing length
522of subject string. The <i>match_limit_recursion</i> number is a measure of how
523much stack (or, if PCRE is compiled with NO_RECURSE, how much heap) memory is
524needed to complete the match attempt.
525</P>
526<P>
527When \O is used, the value specified may be higher or lower than the size set
528by the <b>-O</b> command line option (or defaulted to 45); \O applies only to
529the call of <b>pcre_exec()</b> for the line in which it appears.
530</P>
531<P>
532If the <b>/P</b> modifier was present on the pattern, causing the POSIX wrapper
533API to be used, the only option-setting sequences that have any effect are \B,
534\N, and \Z, causing REG_NOTBOL, REG_NOTEMPTY, and REG_NOTEOL, respectively,
535to be passed to <b>regexec()</b>.
536</P>
537<P>
538The use of \x{hh...} to represent UTF-8 characters is not dependent on the use
539of the <b>/8</b> modifier on the pattern. It is recognized always. There may be
540any number of hexadecimal digits inside the braces. The result is from one to
541six bytes, encoded according to the original UTF-8 rules of RFC 2279. This
542allows for values in the range 0 to 0x7FFFFFFF. Note that not all of those are
543valid Unicode code points, or indeed valid UTF-8 characters according to the
544later rules in RFC 3629.
545</P>
546<br><a name="SEC6" href="#TOC1">THE ALTERNATIVE MATCHING FUNCTION</a><br>
547<P>
548By default, <b>pcretest</b> uses the standard PCRE matching function,
549<b>pcre_exec()</b> to match each data line. From release 6.0, PCRE supports an
550alternative matching function, <b>pcre_dfa_test()</b>, which operates in a
551different way, and has some restrictions. The differences between the two
552functions are described in the
553<a href="pcrematching.html"><b>pcrematching</b></a>
554documentation.
555</P>
556<P>
557If a data line contains the \D escape sequence, or if the command line
558contains the <b>-dfa</b> option, the alternative matching function is called.
559This function finds all possible matches at a given point. If, however, the \F
560escape sequence is present in the data line, it stops after the first match is
561found. This is always the shortest possible match.
562</P>
563<br><a name="SEC7" href="#TOC1">DEFAULT OUTPUT FROM PCRETEST</a><br>
564<P>
565This section describes the output when the normal matching function,
566<b>pcre_exec()</b>, is being used.
567</P>
568<P>
569When a match succeeds, <b>pcretest</b> outputs the list of captured substrings
570that <b>pcre_exec()</b> returns, starting with number 0 for the string that
571matched the whole pattern. Otherwise, it outputs "No match" when the return is
572PCRE_ERROR_NOMATCH, and "Partial match:" followed by the partially matching
573substring when <b>pcre_exec()</b> returns PCRE_ERROR_PARTIAL. (Note that this is
574the entire substring that was inspected during the partial match; it may
575include characters before the actual match start if a lookbehind assertion,
576\K, \b, or \B was involved.) For any other return, <b>pcretest</b> outputs
577the PCRE negative error number and a short descriptive phrase. If the error is
578a failed UTF-8 string check, the byte offset of the start of the failing
579character and the reason code are also output, provided that the size of the
580output vector is at least two. Here is an example of an interactive
581<b>pcretest</b> run.
582<pre>
583 $ pcretest
584 PCRE version 8.13 2011-04-30
585
586 re&#62; /^abc(\d+)/
587 data&#62; abc123
588 0: abc123
589 1: 123
590 data&#62; xyz
591 No match
592</pre>
593Unset capturing substrings that are not followed by one that is set are not
594returned by <b>pcre_exec()</b>, and are not shown by <b>pcretest</b>. In the
595following example, there are two capturing substrings, but when the first data
596line is matched, the second, unset substring is not shown. An "internal" unset
597substring is shown as "&#60;unset&#62;", as for the second data line.
598<pre>
599 re&#62; /(a)|(b)/
600 data&#62; a
601 0: a
602 1: a
603 data&#62; b
604 0: b
605 1: &#60;unset&#62;
606 2: b
607</pre>
608If the strings contain any non-printing characters, they are output as \0x
609escapes, or as \x{...} escapes if the <b>/8</b> modifier was present on the
610pattern. See below for the definition of non-printing characters. If the
611pattern has the <b>/+</b> modifier, the output for substring 0 is followed by
612the the rest of the subject string, identified by "0+" like this:
613<pre>
614 re&#62; /cat/+
615 data&#62; cataract
616 0: cat
617 0+ aract
618</pre>
619If the pattern has the <b>/g</b> or <b>/G</b> modifier, the results of successive
620matching attempts are output in sequence, like this:
621<pre>
622 re&#62; /\Bi(\w\w)/g
623 data&#62; Mississippi
624 0: iss
625 1: ss
626 0: iss
627 1: ss
628 0: ipp
629 1: pp
630</pre>
631"No match" is output only if the first match attempt fails. Here is an example
632of a failure message (the offset 4 that is specified by \&#62;4 is past the end of
633the subject string):
634<pre>
635 re&#62; /xyz/
636 data&#62; xyz\&#62;4
637 Error -24 (bad offset value)
638</PRE>
639</P>
640<P>
641If any of the sequences <b>\C</b>, <b>\G</b>, or <b>\L</b> are present in a
642data line that is successfully matched, the substrings extracted by the
643convenience functions are output with C, G, or L after the string number
644instead of a colon. This is in addition to the normal full list. The string
645length (that is, the return from the extraction function) is given in
646parentheses after each string for <b>\C</b> and <b>\G</b>.
647</P>
648<P>
649Note that whereas patterns can be continued over several lines (a plain "&#62;"
650prompt is used for continuations), data lines may not. However newlines can be
651included in data by means of the \n escape (or \r, \r\n, etc., depending on
652the newline sequence setting).
653</P>
654<br><a name="SEC8" href="#TOC1">OUTPUT FROM THE ALTERNATIVE MATCHING FUNCTION</a><br>
655<P>
656When the alternative matching function, <b>pcre_dfa_exec()</b>, is used (by
657means of the \D escape sequence or the <b>-dfa</b> command line option), the
658output consists of a list of all the matches that start at the first point in
659the subject where there is at least one match. For example:
660<pre>
661 re&#62; /(tang|tangerine|tan)/
662 data&#62; yellow tangerine\D
663 0: tangerine
664 1: tang
665 2: tan
666</pre>
667(Using the normal matching function on this data finds only "tang".) The
668longest matching string is always given first (and numbered zero). After a
669PCRE_ERROR_PARTIAL return, the output is "Partial match:", followed by the
670partially matching substring. (Note that this is the entire substring that was
671inspected during the partial match; it may include characters before the actual
672match start if a lookbehind assertion, \K, \b, or \B was involved.)
673</P>
674<P>
675If <b>/g</b> is present on the pattern, the search for further matches resumes
676at the end of the longest match. For example:
677<pre>
678 re&#62; /(tang|tangerine|tan)/g
679 data&#62; yellow tangerine and tangy sultana\D
680 0: tangerine
681 1: tang
682 2: tan
683 0: tang
684 1: tan
685 0: tan
686</pre>
687Since the matching function does not support substring capture, the escape
688sequences that are concerned with captured substrings are not relevant.
689</P>
690<br><a name="SEC9" href="#TOC1">RESTARTING AFTER A PARTIAL MATCH</a><br>
691<P>
692When the alternative matching function has given the PCRE_ERROR_PARTIAL return,
693indicating that the subject partially matched the pattern, you can restart the
694match with additional subject data by means of the \R escape sequence. For
695example:
696<pre>
697 re&#62; /^\d?\d(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\d\d$/
698 data&#62; 23ja\P\D
699 Partial match: 23ja
700 data&#62; n05\R\D
701 0: n05
702</pre>
703For further information about partial matching, see the
704<a href="pcrepartial.html"><b>pcrepartial</b></a>
705documentation.
706</P>
707<br><a name="SEC10" href="#TOC1">CALLOUTS</a><br>
708<P>
709If the pattern contains any callout requests, <b>pcretest</b>'s callout function
710is called during matching. This works with both matching functions. By default,
711the called function displays the callout number, the start and current
712positions in the text at the callout time, and the next pattern item to be
713tested. For example, the output
714<pre>
715 ---&#62;pqrabcdef
716 0 ^ ^ \d
717</pre>
718indicates that callout number 0 occurred for a match attempt starting at the
719fourth character of the subject string, when the pointer was at the seventh
720character of the data, and when the next pattern item was \d. Just one
721circumflex is output if the start and current positions are the same.
722</P>
723<P>
724Callouts numbered 255 are assumed to be automatic callouts, inserted as a
725result of the <b>/C</b> pattern modifier. In this case, instead of showing the
726callout number, the offset in the pattern, preceded by a plus, is output. For
727example:
728<pre>
729 re&#62; /\d?[A-E]\*/C
730 data&#62; E*
731 ---&#62;E*
732 +0 ^ \d?
733 +3 ^ [A-E]
734 +8 ^^ \*
735 +10 ^ ^
736 0: E*
737</pre>
738If a pattern contains (*MARK) items, an additional line is output whenever
739a change of latest mark is passed to the callout function. For example:
740<pre>
741 re&#62; /a(*MARK:X)bc/C
742 data&#62; abc
743 ---&#62;abc
744 +0 ^ a
745 +1 ^^ (*MARK:X)
746 +10 ^^ b
747 Latest Mark: X
748 +11 ^ ^ c
749 +12 ^ ^
750 0: abc
751</pre>
752The mark changes between matching "a" and "b", but stays the same for the rest
753of the match, so nothing more is output. If, as a result of backtracking, the
754mark reverts to being unset, the text "&#60;unset&#62;" is output.
755</P>
756<P>
757The callout function in <b>pcretest</b> returns zero (carry on matching) by
758default, but you can use a \C item in a data line (as described above) to
759change this and other parameters of the callout.
760</P>
761<P>
762Inserting callouts can be helpful when using <b>pcretest</b> to check
763complicated regular expressions. For further information about callouts, see
764the
765<a href="pcrecallout.html"><b>pcrecallout</b></a>
766documentation.
767</P>
768<br><a name="SEC11" href="#TOC1">NON-PRINTING CHARACTERS</a><br>
769<P>
770When <b>pcretest</b> is outputting text in the compiled version of a pattern,
771bytes other than 32-126 are always treated as non-printing characters are are
772therefore shown as hex escapes.
773</P>
774<P>
775When <b>pcretest</b> is outputting text that is a matched part of a subject
776string, it behaves in the same way, unless a different locale has been set for
777the pattern (using the <b>/L</b> modifier). In this case, the <b>isprint()</b>
778function to distinguish printing and non-printing characters.
779</P>
780<br><a name="SEC12" href="#TOC1">SAVING AND RELOADING COMPILED PATTERNS</a><br>
781<P>
782The facilities described in this section are not available when the POSIX
783interface to PCRE is being used, that is, when the <b>/P</b> pattern modifier is
784specified.
785</P>
786<P>
787When the POSIX interface is not in use, you can cause <b>pcretest</b> to write a
788compiled pattern to a file, by following the modifiers with &#62; and a file name.
789For example:
790<pre>
791 /pattern/im &#62;/some/file
792</pre>
793See the
794<a href="pcreprecompile.html"><b>pcreprecompile</b></a>
795documentation for a discussion about saving and re-using compiled patterns.
796Note that if the pattern was successfully studied with JIT optimization, the
797JIT data cannot be saved.
798</P>
799<P>
800The data that is written is binary. The first eight bytes are the length of the
801compiled pattern data followed by the length of the optional study data, each
802written as four bytes in big-endian order (most significant byte first). If
803there is no study data (either the pattern was not studied, or studying did not
804return any data), the second length is zero. The lengths are followed by an
805exact copy of the compiled pattern. If there is additional study data, this
806(excluding any JIT data) follows immediately after the compiled pattern. After
807writing the file, <b>pcretest</b> expects to read a new pattern.
808</P>
809<P>
810A saved pattern can be reloaded into <b>pcretest</b> by specifying &#60; and a file
811name instead of a pattern. The name of the file must not contain a &#60; character,
812as otherwise <b>pcretest</b> will interpret the line as a pattern delimited by &#60;
813characters.
814For example:
815<pre>
816 re&#62; &#60;/some/file
817 Compiled pattern loaded from /some/file
818 No study data
819</pre>
820If the pattern was previously studied with the JIT optimization, the JIT
821information cannot be saved and restored, and so is lost. When the pattern has
822been loaded, <b>pcretest</b> proceeds to read data lines in the usual way.
823</P>
824<P>
825You can copy a file written by <b>pcretest</b> to a different host and reload it
826there, even if the new host has opposite endianness to the one on which the
827pattern was compiled. For example, you can compile on an i86 machine and run on
828a SPARC machine.
829</P>
830<P>
831File names for saving and reloading can be absolute or relative, but note that
832the shell facility of expanding a file name that starts with a tilde (~) is not
833available.
834</P>
835<P>
836The ability to save and reload files in <b>pcretest</b> is intended for testing
837and experimentation. It is not intended for production use because only a
838single pattern can be written to a file. Furthermore, there is no facility for
839supplying custom character tables for use with a reloaded pattern. If the
840original pattern was compiled with custom tables, an attempt to match a subject
841string using a reloaded pattern is likely to cause <b>pcretest</b> to crash.
842Finally, if you attempt to load a file that is not in the correct format, the
843result is undefined.
844</P>
845<br><a name="SEC13" href="#TOC1">SEE ALSO</a><br>
846<P>
847<b>pcre</b>(3), <b>pcreapi</b>(3), <b>pcrecallout</b>(3), <b>pcrejit</b>,
848<b>pcrematching</b>(3), <b>pcrepartial</b>(d), <b>pcrepattern</b>(3),
849<b>pcreprecompile</b>(3).
850</P>
851<br><a name="SEC14" href="#TOC1">AUTHOR</a><br>
852<P>
853Philip Hazel
854<br>
855University Computing Service
856<br>
857Cambridge CB2 3QH, England.
858<br>
859</P>
860<br><a name="SEC15" href="#TOC1">REVISION</a><br>
861<P>
862Last updated: 02 December 2011
863<br>
864Copyright &copy; 1997-2011 University of Cambridge.
865<br>
866<p>
867Return to the <a href="index.html">PCRE index page</a>.
868</p>