tags:

views:

214

answers:

1

I need to use regular expressions in C and was looking for a clear tutorial on its use and how to capture substrings. (I'm using the regex.h library on linux)

I have used regular expressions before in other languages so know how to construct the actual expressions, I am looking for a tutorial on it's implementation in C.

Thanks.

+2  A: 

Google found this: http://www.peope.net/old/regex.html

lhf