tags:

views:

52

answers:

5

Where can I find basic information on Regex? My textbook does not explain it very well.

+4  A: 
jeffamaphone
Also the regular expression library [documentation](http://docs.python.org/library/re.html) was fun.
Ashish
A: 

perldoc perlrequick

perldoc perlre

ghostdog74
A: 

I wrote a tutorial some time ago. Here's the link: http://tech.bluesmoon.info/2006/04/beginning-regular-expressions.html

bluesmoon
A: 

If you're wanting to find tools to help with regex pattern matching as well, the best one I've found is here:

http://www.gskinner.com/RegExr/desktop/

And it's completely free. It also has some examples to help you, too. Hope this helps!

Josh