views:

842

answers:

5

Does anyone know of a regular expression tutorial that doesn't use a designer?

+1  A: 

Check out Expresso I have used it in the past to build my RegEx. It is good to help learning too. Not really a tutorial but you can test out regex's with it.

Brawndo
That looks pretty cool and simple but I like learning the old school way :-)
Lucas McCoy
A: 

RegEx Buddy, while also not a tutorial in itself, has been one of the best tools for me. The on the fly highlighting helps.

Pat
+4  A: 

I learned the basics of RegEx with this tutorial It talks about what happens behind the scenes and doesn't depend on a certain platform.

colithium
I started with the same tutorial. Knowing the .Net Framework Regex support specifically isn't bad either.http://msdn.microsoft.com/en-us/library/hs600312.aspx
CStick
A: 

RegexBuddy is also nice, if I may add. There is a variety of similr tools available. A simple google search "regex tool" reveals most of them. As far as for the tutorial, I can recommend the book "Mastering Regular Expressions" (I read the first, there is probably a newer edition by now)

ldigas
+3  A: 

This is a great and quick getting started guide:

The absolute bare minimum every programmer should know about regular expressions

Stefan