tags:

views:

108

answers:

5

Possible Duplicate:
Learning Regular Expressions

How to start off?

Which software to use?

+6  A: 

I use this all the time (for reference) - has a good tutorial...

http://www.regular-expressions.info/

barrylloyd
+1  A: 

Regular Expressions Cookbook is Awesome!

mlsteeves
+3  A: 

Learn it from regular-expressions.info and use a regex editor such as Expresso that will decompose your regex for you as you write it.

rubular.com is another useful place to go.

Amarghosh
A: 

you can also use Regex Coach Editor, it's a nice one!

Nikhil Jain
A: 

http://gskinner.com/RegExr/

This is a very complete online tool written in Actionscript 3. It colors matches, and also executes basic RE functions on the text.

You can use it with any text and RE, just introduce it in the fields and let it go!

The AS3 regexp support is quite complete so you can test on-the-fly everything, including look-ahead and look-behind (both positive and negative), grouping without capturing etc.

There is also a great number of community-provided RE ready for use, with examples and all, integrated within the application.

saverio