/[pcre]/code/trunk/doc/html/pcretest.html
ViewVC logotype

Contents of /code/trunk/doc/html/pcretest.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 567 - (hide annotations) (download) (as text)
Sat Nov 6 17:10:00 2010 UTC (2 years, 7 months ago) by ph10
File MIME type: text/html
File size: 32826 byte(s)
Test for ridiculous values of starting offsets; tidy UTF-8 code.

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

Properties

Name Value
svn:eol-style native
svn:keywords "Author Date Id Revision Url"

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12