tags:

views:

45

answers:

2

Hello,

gcc 4.4.4 c89

Does anyone know of any good online tutorials using regex in c.

I have to do a lot of regex, which I haven't done before.

If the tutorials or books could be related to sscanf would be even better.

Many thanks,

+3  A: 

The best resource : http://www.regular-expressions.info/

This is not specific to C but mentions various flavors and differences at every point.

Gopi
+1  A: 

PCRE docs: http://perldoc.perl.org/perlretut.html

Tim