I'm after some simple examples and best practices of how to use regular expressions in ANSI C. man regex.h does not provide that much help.
|
|
Regular expressions actually aren't part of ANSI C. It sounds like you might be talking about the POSIX regular expression library, which comes with most (all?) *nixes. Here's an example of using POSIX regexes in C:
Alternatively, you may want to check out PCRE, a library for Perl-compatible regular expressions in C. The Perl syntax is pretty much that same syntax used in Java, Python, and a number of other languages. The POSIX syntax is the syntax used by grep, sed, vi, etc. |
|||||
|
|
May be you're just trying to find this piece of code Brian W. Kernighan and Rob Pike wrote it to deal with wildcard in "grep" |
|||
|
|
|
It's probably not what you want, but a tool like re2c can compile POSIX(-ish) regular expressions to ANSI C. It's written as a replacement for |
|||
|
|
