views:

149

answers:

7

So I'm familiar with the basics of regex but am looking for good tutorials for learning anything beyond the basics. I'd also appreciate any links to interactive problems where I can type in regular expressions and see if they solve it. Even ideas for intermediate or advanced problems I can try and solve through my own coding would be great.

+7  A: 

This is ground-zero for learning regular expressions:

Regular Expression Tutorials

Jose Basilio
+2  A: 

Regular-Expressions info goes over every aspect of regular expressions.

Also are some Advanced Regular Expression Examples that users have posted to test your knowledge

TStamper
A: 

Here you have a Regex Library. It's not exactly what you asked for, but you might find useful anyway: http://regexlib.com

Seb
+5  A: 

"Mastering Regular Expressions", by Jeffrey E. F. Friedl. Yes, it's a book vs. an on-line tutorial, but a very good one...

Kevin Little
+4  A: 
alexn
+1  A: 

One program I always come back to is RegexDesigner. It's a very simple tool that let's you write, test, and save regexs; a lot like the above RegEx Buddy but simpler and free. It also generates C# and VB.NET code.

CodexArcanum
A: 
justinhj