📄 regexp.3
字号:
.\" Copyright (c) 1991, 1993.\" The Regents of the University of California. All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)regexp.3 8.1 (Berkeley) 6/4/93.\".Dd June 4, 1993.Dt REGEXP 3.Os.Sh NAME.Nm regcomp ,.Nm regexec ,.Nm regsub ,.Nm regerror.Nd regular expression handlers.Sh SYNOPSIS.Fd #include <regexp.h>.Ft regexp *.Fn regcomp "const char *exp".Ft int.Fn regexec "const regexp *prog" "const char *string".Ft void.Fn regsub "const regexp *prog" "const char *source" "char *dest".Sh DESCRIPTIONThis interface is made obsolete by.Xr regex 3 ..PpThe.Fn regcomp ,.Fn regexec ,.Fn regsub ,and.Fn regerrorfunctionsimplement.Xr egrep 1 Ns -styleregular expressions and supporting facilities..PpThe.Fn regcompfunctioncompiles a regular expression into a structure of type.Xr regexp ,and returns a pointer to it.The space has been allocated using.Xr malloc 3and may be released by.Xr free ..PpThe.Fn regexecfunctionmatches a.Dv NUL Ns -terminated.Fa stringagainst the compiled regular expressionin.Fa prog .It returns 1 for success and 0 for failure, and adjusts the contents of.Fa prog Ns 's.Em startpand.Em endp(see below) accordingly..PpThe members of a.Xr regexpstructure include at least the following (not necessarily in order):.Bd -literal -offset indentchar *startp[NSUBEXP];char *endp[NSUBEXP];.Ed.Ppwhere.Dv NSUBEXPis defined (as 10) in the header file.Once a successful.Fn regexechas been done using the.Fn regexp ,each.Em startp Ns - Em endppair describes one substringwithin the.Fa string ,with the.Em startppointing to the first character of the substring andthe.Em endppointing to the first character following the substring.The 0th substring is the substring of.Fa stringthat matched the wholeregular expression.The others are those substrings that matched parenthesized expressionswithin the regular expression, with parenthesized expressions numberedin left-to-right order of their opening parentheses..PpThe.Fn regsubfunctioncopies.Fa sourceto.Fa dest ,making substitutions according to themost recent.Fn regexecperformed using.Fa prog .Each instance of `&' in.Fa sourceis replaced by the substringindicated by.Em startp Ns Bqand.Em endp Ns Bq .Each instance of.Sq \e Ns Em n ,where.Em nis a digit, is replaced bythe substring indicated by.Em startp Ns Bq Em nand.Em endp Ns Bq Em n .To get a literal `&' or.Sq \e Ns Em ninto.Fa dest ,prefix it with `\e';to get a literal `\e' preceding `&' or.Sq \e Ns Em n ,prefix it withanother `\e'..PpThe.Fn regerrorfunctionis called whenever an error is detected in.Fn regcomp ,.Fn regexec ,or.Fn regsub .The default.Fn regerrorwrites the string.Fa msg ,with a suitable indicator of origin,on the standarderror outputand invokes.Xr exit 2 .The.Fn regerrorfunctioncan be replaced by the user if other actions are desirable..Sh REGULAR EXPRESSION SYNTAXA regular expression is zero or more.Em branches ,separated by `|'.It matches anything that matches one of the branches..PpA branch is zero or more.Em pieces ,concatenated.It matches a match for the first, followed by a match for the second, etc..PpA piece is an.Em atompossibly followed by `*', `+', or `?'.An atom followed by `*' matches a sequence of 0 or more matches of the atom.An atom followed by `+' matches a sequence of 1 or more matches of the atom.An atom followed by `?' matches a match of the atom, or the null string..PpAn atom is a regular expression in parentheses (matching a match for theregular expression), a.Em range(see below), `.'(matching any single character), `^' (matching the null string at thebeginning of the input string), `$' (matching the null string at theend of the input string), a `\e' followed by a single character (matchingthat character), or a single character with no other significance(matching that character)..PpA.Em rangeis a sequence of characters enclosed in `[]'.It normally matches any single character from the sequence.If the sequence begins with `^',it matches any single character.Em notfrom the rest of the sequence.If two characters in the sequence are separated by `\-', this is shorthandfor the full list of.Tn ASCIIcharacters between them(e.g. `[0-9]' matches any decimal digit).To include a literal `]' in the sequence, make it the first character(following a possible `^').To include a literal `\-', make it the first or last character..Sh AMBIGUITYIf a regular expression could match two different parts of the input string,it will match the one which begins earliest.If both begin in the same place but match different lengths, or matchthe same length in different ways, life gets messier, as follows..PpIn general, the possibilities in a list of branches are considered inleft-to-right order, the possibilities for `*', `+', and `?' areconsidered longest-first, nested constructs are considered from theoutermost in, and concatenated constructs are considered leftmost-first.The match that will be chosen is the one that uses the earliestpossibility in the first choice that has to be made.If there is more than one choice, the next will be made in the same manner(earliest possibility) subject to the decision on the first choice.And so forth..PpFor example,.Sq Li (ab|a)b*ccould match`abc' in one of two ways.The first choice is between `ab' and `a'; since `ab' is earlier, and doeslead to a successful overall match, it is chosen.Since the `b' is already spoken for,the `b*' must match its last possibility\(emthe empty string\(emsinceit must respect the earlier choice..PpIn the particular case where no `|'s are present and there is only one`*', `+', or `?', the net effect is that the longest possiblematch will be chosen.So.Sq Li ab* ,presented with `xabbbby', will match `abbbb'.Note that if.Sq Li ab* ,is tried against `xabyabbbz', itwill match `ab' just after `x', due to the begins-earliest rule.(In effect, the decision on where to start the match is the first choiceto be made, hence subsequent choices must respect it even if this leads themto less-preferred alternatives.).Sh RETURN VALUESThe.Fn regcompfunctionreturns.Dv NULLfor a failure.Pf ( Fn regerrorpermitting),where failures are syntax errors, exceeding implementation limits,or applying `+' or `*' to a possibly-null operand..Sh SEE ALSO.Xr ed 1 ,.Xr ex 1 ,.Xr expr 1 ,.Xr egrep 1 ,.Xr fgrep 1 ,.Xr grep 1 ,.Xr regex 3.Sh HISTORYBoth code and manual page for.Fn regcomp ,.Fn regexec ,.Fn regsub ,and.Fn regerrorwere written at the University of Torontoand appeared in.Bx 4.3 tahoe .They are intended to be compatible with the Bell V8.Xr regexp 3 ,but are not derived from Bell code..Sh BUGSEmpty branches and empty regular expressions are not portable to V8..PpThe restriction againstapplying `*' or `+' to a possibly-null operand is an artifact of thesimplistic implementation..PpDoes not support.Xr egrep Ns 'snewline-separated branches;neither does the V8.Xr regexp 3 ,though..PpDue to emphasis oncompactness and simplicity,it's not strikingly fast.It does give special attention to handling simple cases quickly.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -