Unix and Linux Discussions Tagged with regex |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
409 |
426,768 |
Open Source |
|
|
|
1 |
22,130 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
74,059 |
Shell Programming and Scripting |
|
|
|
17 |
13,797 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
19,355 |
Shell Programming and Scripting |
|
|
|
6 |
17,738 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
20,412 |
Shell Programming and Scripting |
|
|
|
6 |
16,865 |
Shell Programming and Scripting |
|
|
|
5 |
15,850 |
Shell Programming and Scripting |
|
|
|
7 |
19,043 |
Shell Programming and Scripting |
|
|
|
6 |
9,479 |
Shell Programming and Scripting |
|
|
|
2 |
9,597 |
Shell Programming and Scripting |
|
|
|
6 |
10,160 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
6,079 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,438 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,713 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,029 |
Programming |
|
|
|
5 |
3,300 |
UNIX for Beginners Questions & Answers |
|
|
|
12 |
12,102 |
Shell Programming and Scripting |
|
|
|
6 |
3,821 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,561 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,455 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,439 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
15,444 |
Homework & Coursework Questions |
|
|
|
9 |
3,330 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,776 |
Shell Programming and Scripting |
|
|
|
3 |
3,985 |
Shell Programming and Scripting |
|
|
|
1 |
2,316 |
Shell Programming and Scripting |
|
|
|
10 |
4,155 |
Shell Programming and Scripting |
|
|
|
2 |
2,154 |
Shell Programming and Scripting |
|
|
|
4 |
3,075 |
Shell Programming and Scripting |
|
|
|
3 |
2,322 |
Programming |
|
|
|
3 |
2,699 |
Shell Programming and Scripting |
|
|
|
3 |
3,111 |
Programming |
|
|
|
8 |
3,392 |
Shell Programming and Scripting |
|
|
|
2 |
2,372 |
Shell Programming and Scripting |
|
|
|
8 |
4,892 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
16,869 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,298 |
Shell Programming and Scripting |
|
|
|
2 |
5,286 |
Shell Programming and Scripting |
RE_COMP(3) Linux Programmer's Manual RE_COMP(3)
NAME
re_comp, re_exec - BSD regex functions
SYNOPSIS
#define _REGEX_RE_COMP
#include <sys/types.h>
#include <regex.h>
char *re_comp(char *regex);
int re_exec(char *string);
DESCRIPTION
re_comp() is used to compile the null-terminated regular expression pointed to by regex. The compiled pattern occupies a static area, the
pattern buffer, which is overwritten by subsequent use of re_comp(). If regex is NULL, no operation is performed and the pattern buffer's
contents are not altered.
re_exec() is used to assess whether the null-terminated string pointed to by string matches the previously compiled regex.
RETURN VALUE
re_comp() returns NULL on successful compilation of regex otherwise it returns a pointer to an appropriate error message.
re_exec() returns 1 for a successful match, zero for failure.
CONFORMING TO
4.3BSD.
NOTES
These functions are obsolete; the functions documented in regcomp(3) should be used instead.
SEE ALSO
regcomp(3), regex(7), GNU regex manual
COLOPHON
This page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
GNU
1995-07-14 RE_COMP(3)