vote up 13 vote down star
18

I'd like to improve my regex knowledge. Are there any exercises/tools that you wolud recommend?

flag

75% accept rate

26 Answers

vote up 24 vote down check

I use Mastering Regular Expressions from O'Reilly.

alt text

link|flag
lol, i clicked this topic just to post the link to this book.. too fitting to the question :P – Simucal Oct 22 '08 at 5:42
That picture is begging for a macro/'shop. – Rob Howard Oct 22 '08 at 6:26
vote up 0 vote down

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

is something i found after looking through some other sites

link|flag
vote up 0 vote down

I found that learning about how they were implemented under the hood really helped. Actually it was studying languages and compiler design that I first encountered regexes. Knowing where they come from, and how they relate to grammars, DFAs, lexers, etc I think is a real help. It especially helps with debugging, since you can get into the mind of the regex so to speak.

link|flag
vote up 0 vote down

If you are working in .NET I recommend this site to visualize your results as well as see how to set up your code.

link|flag
vote up 2 vote down

I recommend this one.

Regular Expressions

link|flag
Redundant answers is not a problem. – Goran Oct 22 '08 at 6:44
Is each answer accepted 0 or more times, or 1 or more times? – Windows programmer Oct 22 '08 at 7:20
Subtle 'shop not as funny as originally hoped. D: – Rob Howard Nov 1 '08 at 23:55
vote up 1 vote down

Fix bugs in Jeff Friedl's book before he does. Until you do that, you haven't mastered regular expressions.

link|flag
vote up 2 vote down

You can never master regular expressions. Just when you think you have you realise it is the regular expressions who have mastered you.

link|flag
Not to mention the fact that Perl's RegExs keep getting new, useful features. – Brad Gilbert Oct 16 '08 at 3:32
In Mother Russia, regular expressions master You! – __ Oct 20 '08 at 23:04
vote up 2 vote down

Make sure you understand the basics. You can get this from a variety of sources (depending on your choice of regex flavor).

You can play around with them on something like this.

link|flag
vote up 2 vote down

I learned about them by learning Perl, and using it to create a configuration file parser. If you wanted to do something similar these days I would suggest Ruby, which has a similar hook for RE in it. Once I learned the basics, I found many of the tools I'd been using had great RE support, if you knew to use it. It is really very powerful.

I highly recommend the Regular Expressions Pocket Reference that others have mentioned. It will be much simpler to keep around to look up something quickly, as you will need to do. Not to mention that many applications have slightly different ways of implementing some parts of it (ie, whether you should have to backslash escape parenthesis).

If you do much text processing, I recommend learning RE. You will appreciate it.

link|flag
vote up 3 vote down

I'd like to add that even when you know what you're doing, having a printed-out cheat sheet on hand is a huge time-saver.

link|flag
vote up 5 vote down

Expresso is a pretty good, free RegEx utility:

http://www.ultrapico.com/Expresso.htm

And a Regular Expressions Cheat Sheet which comes in handy:

http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/

link|flag
Gordon, those are both excellent suggestions. I wish I could vote twice :-) – Clay Nichols Feb 5 at 20:57
vote up 8 vote down

Best way to master regular expressions is to use them in your day to day work. Use a regex aware editor. I recommend NotePad++. Use the find and replace functionality with regex enabled.

You need to know just the basics to start off. Words, characters, numbers, white spaces. They are quite easy to remember. You don't get everything right the first time. But you will learn every time you try it.

Remember, unless you use it regularly, you will probably forget regex in couple of weeks.

link|flag
vote up 5 vote down

I keep a copy of the Regular Expression Pocket Reference at hand while I work - it gives me the short info I need about the use of RegEx in about a dozen languages at hand.

link|flag
This appears to be out of print. – Clay Nichols Feb 5 at 19:33
The next edition is in print, at oreilly.com/catalog/9780596514273/…. – John Fiala Feb 18 at 3:37
vote up 4 vote down

As simon pointed out. The most important part in mastering Regex is when NOT to use regex but that skill will come eventually. Till then use regex when you're doing Word finds or in your fave texteditor or in Excel. Anywhere that gives you that option, take it till you get a good handle on it.

Also, learn about these concepts fairly early on.

  • greedy
  • lazy
  • what the difference between "." and "\w"
  • "\b"
  • the short-hand character classes ("\s", "\d", etc)
link|flag
vote up 4 vote down

Now we've given lots of pointers for learning more about regular expressions, it's probably worth quoting Jamie Zawinski:

Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems.

Part of learning about regular expressions is learning when not to use them (and when they're appropriate).

link|flag
It's cute to say that, but there are cases where using a Regular Expression really is the correct answer - especially in simpler use cases where the regular expression is fairly understandable. – John Fiala Oct 15 '08 at 16:30
Excellent. I have adopted this as a heuristic, or rule of thumb if you don't like the pedantic sound of the word 'heuristic'. – __ Oct 15 '08 at 16:31
John, I thought it was obvious (expanded now) that I wasn't saying you should never use them. There are times when they are just the right tool. Unfortunately, that's also a smallish subset of the times people try them. – simon Oct 15 '08 at 17:22
Yeah, you're misunderstanding the quote. I believe he said that during an anti-perl rant (possibly because it was difficult back in 97 to initiate a regex function in perl). He wasn't saying don't use it. – Keng Oct 15 '08 at 18:50
vote up 6 vote down

To master them, don't stop at reading about them. Go down the list of posts tagged regex and start solving the problems. Don't peek at the answers until you're ready.

link|flag
vote up 4 vote down

Besides those already mentioned, you can try the Regex Coach. I've heard good things about it.

link|flag
vote up 4 vote down

Practice, practice, practice. I've always found Perl's manual page on regular expressions to be an excellent reference for all the common and POSIX regex symbols and commands.

link|flag
Also try perldoc.perl.org/perlretut.html – Brad Gilbert Oct 16 '08 at 3:16
vote up 4 vote down

As Joe90 mentions, reading about them takes you a long way ;)

Personally I find http://www.regular-expressions.info/ a great resource for regex.

link|flag
vote up 12 vote down

regular-expressions.info is an excellent site, and RegexBuddy is a great visualizing tool.

link|flag
vote up 2 vote down

Perl + Roberts Perl Tutorial are the source of most of my regex ability.

link|flag
vote up 13 vote down

Here are some good resources:

http://regexlib.com/

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

link|flag
regexlib is the way to go! – Kon M Oct 15 '08 at 16:19
Yeah, I just snagged an email validator expression yesterday. Thanks, anonymous contributor of said expression! – __ Oct 15 '08 at 16:34
I like www.regular-expressions.info it is great. Every once in a while when I want to use a more obscure expression I refer to this site.... – Cervo Oct 19 '08 at 14:48
vote up 9 vote down

Start using RegExBuddy!

link|flag
vote up 10 vote down

I highly recommend reading Mastering Regular Expressions. It lives up to its name.

link|flag
This book was the first thing that came to my mind. – J.J. Oct 15 '08 at 16:05
@J.J. Same here. That is an excellent book – EHaskins Oct 15 '08 at 16:35
Nice link to anything but the book you mention. Besides, this answer was given five minutes prior to yours and the link to the book is correct. – TomC Oct 15 '08 at 16:39
Seems like you can't hear about this subject without having the owl mentioned. – abyx Oct 15 '08 at 16:53
Downvoted for stealth hyperlinking to your blog instead of the book you reference. – Michael Carman Oct 15 '08 at 19:59
show 4 more comments
vote up 2 vote down

Reading about them is fine, but actually getting hands on experience with a tool is really helpful.

Try the Regulator - http://weblogs.asp.net/rosherove/pages/tools-and-frameworks-by-roy-osherove.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.