📄 re_comp.3
字号:
.\" Copyright (c) 1980, 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..\".\" @(#)re_comp.3 8.1 (Berkeley) 6/4/93.\".Dd June 4, 1993.Dt RE_COMP 3.Os.Sh NAME.Nm re_comp ,.Nm re_exec.Nd regular expression handler.Sh SYNOPSIS.Fd #include <unistd.h>.Ft char *.Fn re_comp "const char *s".Ft int.Fn re_exec "const char *s".Sh DESCRIPTIONThis interface is made obsolete by.Xr regex 3 ..PpThe.Fn re_compfunctioncompiles a string into an internal form suitable for pattern matching. The.Fn re_execfunctionchecks the argument string against the last string passed to.Fn re_comp ..PpThe.Fn re_compfunctionreturns 0 if the string.Fa swas compiled successfully; otherwise a string containing anerror message is returned. If .Fn re_compis passed 0 or a null string, it returns without changing the currentlycompiled regular expression..PpThe.Fn re_execfunctionreturns 1 if the string.Fa smatches the last compiled regular expression, 0 if the string.Fa sfailed to match the last compiled regular expression, and \-1 if the compiledregular expression was invalid (indicating an internal error)..PpThe strings passed to both.Fn re_compand.Fn re_execmay have trailing or embedded newline characters; they are terminated by.Dv NUL Ns s.The regular expressions recognized are described in the manual entry for .Xr ed 1 ,given the above difference..Sh DIAGNOSTICSThe.Fn re_execfunctionreturns \-1 for an internal error..PpThe.Fn re_compfunctionreturns one of the following strings if an error occurs:.Bd -unfilled -offset indentNo previous regular expression,Regular expression too long,unmatched \e(,missing ],too many \e(\e) pairs,unmatched \e)..Ed.Sh SEE ALSO.Xr ed 1 ,.Xr ex 1 ,.Xr egrep 1 ,.Xr fgrep 1 ,.Xr grep 1 ,.Xr regex 3.Sh HISTORYThe.Fn re_compand.Fn re_execfunctions appeared in .Bx 4.0 .
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -