[Previous] [Contents] [Next]

re_exec()

Execute a regular expression

Synopsis:

#include <unix.h>

int re_exec( char *s );

Library:

libc

Description:

The re_exec() function compares the string pointed to by the string argument with the last regular expression passed to re_comp().

Strings passed to both re_comp() and re_exec() must be terminated by a null byte, and may include newline characters.

The re_comp() and re_exec() functions support simple regular expressions. The regular expressions of the form \{m\}, \{m,\}, or \{m,n\} aren't supported.


Note: For better portability, use regcomp(), regerror(), and regexec() instead of these functions.

Returns:

1
The string matches the last compiled regular expression.
0
The string doesn't match the last compiled regular expression.
-1
The compiled regular expression is invalid (indicating an internal error).

Classification:

Legacy Unix

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

re_comp(), regcomp(), regerror(), regexec()

grep in the Utilities reference


[Previous] [Contents] [Next]