1 .\" Copyright (c) 1992, 1993, 1994 Henry Spencer.
2 .\" Copyright (c) 1992, 1993, 1994
3 .\" The Regents of the University of California. All rights reserved.
5 .\" This code is derived from software contributed to Berkeley by
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)regex.3 8.4 (Berkeley) 3/20/94
43 .Nd regular-expression library
50 .Fa "regex_t * restrict preg" "const char * restrict pattern" "int cflags"
54 .Fa "const regex_t * restrict preg" "const char * restrict string"
55 .Fa "size_t nmatch" "regmatch_t pmatch[restrict]" "int eflags"
59 .Fa "int errcode" "const regex_t * restrict preg"
60 .Fa "char * restrict errbuf" "size_t errbuf_size"
63 .Fn regfree "regex_t *preg"
65 These routines implement
74 compiles an RE written as a string into an internal form,
76 matches that internal form against a string and reports results,
78 transforms error codes from either into human-readable messages,
81 frees any dynamically-allocated storage used by the internal form
86 declares two structure types,
90 the former for compiled internal forms and the latter for match reporting.
91 It also declares the four functions,
94 and a number of constants with names starting with
100 compiles the regular expression contained in the
103 subject to the flags in
105 and places the results in the
107 structure pointed to by
112 is the bitwise OR of zero or more of the following flags:
113 .Bl -tag -width REG_EXTENDED
118 rather than the obsolete
123 This is a synonym for 0,
124 provided as a counterpart to
126 to improve readability.
128 Compile with recognition of all special characters turned off.
129 All characters are thus considered ordinary,
133 This is an extension,
134 compatible with but not specified by
136 and should be used with
137 caution in software intended to be portable to other systems.
145 Compile for matching that ignores upper/lower case distinctions.
149 Compile for matching that need only report success or failure,
150 not what was matched.
152 Compile for newline-sensitive matching.
153 By default, newline is a completely ordinary character with no special
154 meaning in either REs or strings.
157 bracket expressions and
162 anchor matches the null string after any newline in the string
163 in addition to its normal function,
166 anchor matches the null string before any newline in the
167 string in addition to its normal function.
169 The regular expression ends,
170 not at the first NUL,
171 but just before the character pointed to by the
173 member of the structure pointed to by
179 This flag permits inclusion of NULs in the RE;
180 they are considered ordinary characters.
181 This is an extension,
182 compatible with but not specified by
184 and should be used with
185 caution in software intended to be portable to other systems.
189 compliant expressions.
190 This flag has no effect unless linking against
192 This is an extension,
193 compatible with but not specified by
195 and should be used with
196 caution in software intended to be portable to other systems.
201 returns 0 and fills in the structure pointed to by
203 One member of that structure
210 contains the number of parenthesized subexpressions within the RE
211 (except that the value of this member is undefined if the
216 fails, it returns a non-zero error code;
223 matches the compiled RE pointed to by
227 subject to the flags in
229 and reports results using
232 and the returned value.
233 The RE must have been compiled by a previous invocation of
235 The compiled form is not altered during execution of
237 so a single compiled RE can be used simultaneously by multiple threads.
240 the NUL-terminated string pointed to by
242 is considered to be the text of an entire line, minus any terminating
246 argument is the bitwise OR of zero or more of the following flags:
247 .Bl -tag -width REG_STARTEND
249 The first character of the string is treated as the continuation
251 This means that the anchors
256 do not match before it; but see
259 This does not affect the behavior of newlines under
264 does not end a line, so the
266 anchor does not match before it.
267 This does not affect the behavior of newlines under
270 The string is considered to start at
272 .Fa pmatch Ns [0]. Ns Fa rm_so
273 and to end before the byte located at
275 .Fa pmatch Ns [0]. Ns Fa rm_eo ,
276 regardless of the value of
278 See below for the definition of
282 This is an extension,
283 compatible with but not specified by
285 and should be used with
286 caution in software intended to be portable to other systems.
292 is considered the beginning of a line, such that
294 matches before it, and the beginning of a word if there is a word
295 character at this position, such that
303 the character at position
305 is treated as the continuation of a line, and if
307 is greater than 0, the preceding character is taken into consideration.
308 If the preceding character is a newline and the regular expression was compiled
312 matches before the string; if the preceding character is not a word character
313 but the string starts with a word character,
317 match before the string.
322 for a discussion of what is matched in situations where an RE or a
323 portion thereof could match any of several substrings of
328 returns 0 for success and the non-zero code
331 Other non-zero error codes may be returned in exceptional situations;
337 was specified in the compilation of the RE,
344 argument (but see below for the case where
349 points to an array of
353 Such a structure has at least the members
359 (a signed arithmetic type at least as large as an
363 containing respectively the offset of the first character of a substring
364 and the offset of the first character after the end of the substring.
365 Offsets are measured from the beginning of the
369 An empty substring is denoted by equal offsets,
370 both indicating the character following the empty substring.
372 The 0th member of the
374 array is filled in to indicate what substring of
376 was matched by the entire RE.
377 Remaining members report what substring was matched by parenthesized
378 subexpressions within the RE;
381 reports subexpression
383 with subexpressions counted (starting at 1) by the order of their opening
384 parentheses in the RE, left to right.
385 Unused entries in the array (corresponding either to subexpressions that
386 did not participate in the match at all, or to subexpressions that do not
387 exist in the RE (that is,
390 .Fa preg Ns -> Ns Va re_nsub ) )
396 If a subexpression participated in the match several times,
397 the reported substring is the last one it matched.
398 (Note, as an example in particular, that when the RE
402 the parenthesized subexpression matches each of the three
405 an infinite number of empty strings following the last
407 so the reported substring is one of the empties.)
413 must point to at least one
420 to hold the input offsets for
422 Use for output is still entirely controlled by
431 will not be changed by a successful
443 to a human-readable, printable message.
447 .No non\- Ns Dv NULL ,
448 the error code should have arisen from use of
453 and if the error code came from
455 it should have been the result from the most recent
462 may be able to supply a more detailed message using information
469 places the NUL-terminated message into the buffer pointed to by
471 limiting the length (including the NUL) to at most
474 If the whole message will not fit,
475 as much of it as will fit before the terminating NUL is supplied.
477 the returned value is the size of buffer needed to hold the whole
478 message (including terminating NUL).
483 is ignored but the return value is still correct.
493 that results is the printable name of the error code,
496 rather than an explanation thereof.
507 member of the structure it points to
508 must point to the printable name of an error code;
509 in this case, the result in
511 is the decimal digits of
512 the numeric value of the error code
513 (0 if the name is not recognized).
517 are intended primarily as debugging facilities;
519 compatible with but not specified by
521 and should be used with
522 caution in software intended to be portable to other systems.
523 Be warned also that they are considered experimental and changes are possible.
528 frees any dynamically-allocated storage associated with the compiled RE
533 is no longer a valid compiled RE
534 and the effect of supplying it to
540 None of these functions references global variables except for tables
542 all are safe for use from multiple threads if the arguments are safe.
543 .Sh IMPLEMENTATION CHOICES
544 There are a number of decisions that
546 leaves up to the implementor,
547 either by explicitly saying
549 or by virtue of them being
550 forbidden by the RE grammar.
551 This implementation treats them as follows.
555 for a discussion of the definition of case-independent matching.
557 There is no particular limit on the length of REs,
558 except insofar as memory is limited.
559 Memory usage is approximately linear in RE size, and largely insensitive
560 to RE complexity, except for bounded repetitions.
563 for one short RE using them
564 that will run almost any system out of memory.
566 A backslashed character other than one specifically given a magic meaning
569 (such magic meanings occur only in obsolete
572 is taken as an ordinary character.
580 Equivalence classes cannot begin or end bracket-expression ranges.
581 The endpoint of one range cannot begin another.
584 the limit on repetition counts in bounded repetitions, is 255.
586 A repetition operator
591 cannot follow another
593 A repetition operator cannot begin an expression or subexpression
600 cannot appear first or last in a (sub)expression or after another
604 cannot be an empty subexpression.
605 An empty parenthesized subexpression,
607 is legal and matches an
609 An empty string is not a legal RE.
613 followed by a digit is considered the beginning of bounds for a
614 bounded repetition, which must then follow the syntax for bounds.
618 followed by a digit is considered an ordinary character.
623 beginning and ending subexpressions in obsolete
625 REs are anchors, not ordinary characters.
627 Non-zero error codes from
631 include the following:
633 .Bl -tag -width REG_ECOLLATE -compact
640 invalid regular expression
642 invalid collating element
644 invalid character class
647 applied to unescapable character
649 invalid backreference number
663 invalid repetition count(s) in
666 invalid character range in
677 empty (sub)expression
679 cannot happen - you found a bug
681 invalid argument, e.g.\& negative-length string
683 illegal byte sequence (bad multibyte character)
690 sections 2.8 (Regular Expression Notation)
692 B.5 (C Binding for Regular Expression Matching).
694 Originally written by
696 Altered for inclusion in the
700 This is an alpha release with known defects.
701 Please report problems.
703 The back-reference code is subtle and doubts linger about its correctness
710 This will improve with later releases.
714 exceeding 0 is expensive;
716 exceeding 1 is worse.
720 is largely insensitive to RE complexity
723 references are massively expensive.
724 RE length does matter; in particular, there is a strong speed bonus
725 for keeping RE length under about 30 characters,
726 with most special characters counting roughly double.
731 implements bounded repetitions by macro expansion,
732 which is costly in time and space if counts are large
733 or bounded repetitions are nested.
735 .Ql "((((a{1,100}){1,100}){1,100}){1,100}){1,100}"
736 will (eventually) run almost any existing machine out of swap space.
738 There are suspected problems with response to obscure error conditions.
740 certain kinds of internal overflow,
741 produced only by truly enormous REs or by multiply nested bounded repetitions,
742 are probably not handled well.
748 are legal REs because
751 a special character only in the presence of a previous unmatched
753 This cannot be fixed until the spec is fixed.
755 The standard's definition of back references is vague.
757 .Ql "a\e(\e(b\e)*\e2\e)*d"
760 Until the standard is clarified,
761 behavior in such cases should not be relied on.
763 The implementation of word-boundary matching is a bit of a kludge,
764 and bugs may lurk in combinations of word-boundary matching and anchoring.
766 Word-boundary matching does not work properly in multibyte locales.