vote up 25 vote down star
15

I already know the basics of RegEx but I'm not sure where to go from here, I'm looking for both a good and above all easy to understand guide but I am also looking for things to use RegEx's for, it's all well and good reading about it but if you never use them then they will not stick in your mind.

I have already found regular-expressions.info but I'm sure there are more.

flag

23 Answers

vote up 26 vote down check

As with everything, the best way to learn is by doing. Install the trial of Regex Buddy and start hacking away.

The awesomeness of Regex Buddy is that it parses your regex and presents in plain English what it is that each of your symbols and groups are doing.

See here for what it can do: http://www.regexbuddy.com/screen.html

link|flag
There are a number of great books mentioned below, but with something complicated like regular expressions, working with them is the only real way to learn. – Drew Stephens Jul 18 at 2:00
great app really, too bad there is no trial version available :( – Karim Nov 2 at 22:20
vote up 0 vote down

I use regular expressions a lot in Vim, and it has also helped me learn them. You can enable dynamic highlighting of the matched text as you type the expression.

Vim regular expressions are not completely "standard", but I find that every RE implementation has a few quirks to learn anyway.

link|flag
vote up 1 vote down

If you ever want to find out how a regex works in perl, you could always "use re 'debug';" or "use re 'debugcolor'".

perl -Mre=debug -e'/^\w{2,4}$/'
# use re 'debug';  /^\w{2,4}$/;
Compiling REx "^\w{2,4}$"
synthetic stclass "ANYOF[0-9A-Z_a-z{unicode_all}]".
Final program:
   1: BOL (2)
   2: CURLY {2,4} (5)
   4:   ALNUM (0)
   5: EOL (6)
   6: END (0)
floating ""$ at 2..4 (checking floating) stclass ANYOF[0-9A-Z_a-z{unicode_all}] anchored(BOL) minlen 2 
Freeing REx: "^\w{2,4}$"
link|flag
vote up 0 vote down

Play out with python or some other programming language that has regexes in them:

import re

regex = re.compile(r"ab*c")

assert regex.match("ac")
assert regex.match("abc")
assert regex.match("abbc")

result = regex.match("abbbc?")
assert result
print dir(result)
assert result.end() == 5 and result.start() == 0
assert result.group(0) == "abbbc"

You may wonder what r"..." -means. It's not a special syntax for regexes, but for 'raw'. It simply means the string is not losing its escape characters. It still escapes the quotes though. So r"\" is invalid. By using this thing you don't need to do double escaping or use a different escape character for regexes. It's an useful feature to be found from a language of your choice.

Regexes are extremely useful. If you can turn your problem efficiently into a string matching problem. If it's simple enough you won't even need regexes! To give you an example how you could check out whether either player has won in tic-tac-toe, you could try something like next:

# BOARD STATUS:
# OXX
# _XO
# OX_

current_board = "OXX_XOOX_"

def has_won(board, mark):
    win = mark*3
    if win in (board[0:3], board[3:6], board[6:9]): return True
    if win in (board[0::3], board[1::3], board[2::3]): return True
    if win in (board[2::2][:3], board[0::4]): return True

assert has_won(current_board, 'X')
assert not has_won(current_board, 'O')

I think... with the same algorithms the python uses for regexes, you could also do pattern generators. It's not supported by python really, but if it were, you could then do stuff like re.generate(r"(A|T|G)+") or re.generate(r"lo+l")

For a long time I did not used regexes much because I didn't know how to write an efficient regex parser of my own. If you are like me, it's good idea to look into NFAs and DFAs. It's quite interesting how to parse those regexes into state machines, but the implementation aspect itself is somewhat boring in the end.

link|flag
vote up 0 vote down

The regex tester at www.lastdomainnameonearth.com is very useful if you're working with C#, because it shows you not only the result of your regular expression, but gives a lot of insight into the esoteric structures that the Regex API produces.

link|flag
vote up 6 vote down

Perl of course has fantastic Regex support, including this gem;

YAPE::Regex::Explain

PS D:\> perl -e "use YAPE::Regex::Explain; print "APE::Regex::Explain->new(qr/^\w{2,4}$/)->explain;"

The regular expression:

(?-imsx:^\w{2,4}$)

matches as follows:

NODE                     EXPLANATION
----------------------------------------------------------------------
(?-imsx:                 group, but do not capture (case-sensitive)
                         (with ^ and $ matching normally) (with . not
                         matching \n) (matching whitespace and #
                         normally):
----------------------------------------------------------------------
  ^                        the beginning of the string
----------------------------------------------------------------------
  \w{2,4}                  word characters (a-z, A-Z, 0-9, _)
                           (between 2 and 4 times (matching the most
                           amount possible))
----------------------------------------------------------------------
  $                        before an optional \n, and the end of the
                           string
----------------------------------------------------------------------
)                        end of grouping
----------------------------------------------------------------------
PS D:\>
link|flag
I wonder why this was down-voted. ( I up-voted it up to zero ) – Brad Gilbert Oct 24 '08 at 16:34
@Brad, I guess it's retaliation for something I've written. Who knows – edg Oct 25 '08 at 9:39
+1. This is a great tip! – PEZ Jan 21 at 13:04
This is a great tool! Is there anything like this for Ruby? – aaandre Apr 13 at 19:39
vote up 1 vote down

Having just spent the last two days implementing some regexes of my own, I can tell you that:

  • http://www.regular-expression.info is probably the best resource to learn from.
  • The best free software to use is RegexPal (but which frustratingly does not have support for conditionals, but if your regexes are simple it's absolutely fantastic).
  • The best software by far is RegexBuddy but the current version does not have an evaluation, it's buy it or nothing.

You can still download a slightly older version of RegexBuddy than current, that has a 7 day evaluation. If you need to do some regexes for work that may take less time than this, definitely go download a copy.

link|flag
vote up 4 vote down

I wrote a two-part tutorial titled "Regex for people who should know regex but do not"

Part one

Part two (PDF)

It was the first reasonable-length guide I have ever written - I am quite happy with it. One thing I didn't make clear that people have pointed out: try to avoid using regex's wherever possible. Things are almost always more complicated than \w+@\w+.com, and as the saying sort-of goes "You've solve a problem with regex, now you have two"..

The "Practical examples" section of part 2 was really badly titled on my part - I am not recommending using regexs to escape data being put into SQL queries, I was just demonstrating how to use regex's in a way people should understand.

Also, http://www.regular-expressions.info/ is a good site which I still use, despite knowing regex fairly well (for example, when searching for non-capturing groups, the site returned an extremely good description of them)

link|flag
vote up 2 vote down

I am surprised why no one mentioned the BFN, Backus-Naur Form. Every time I hear someone speaking about regular expression, they sounds as if they are talking about something new. IMHO Regular expression aspirants should spend few hours trying to read what BNf, and context free grammar is.

link|flag
vote up 0 vote down

There is also a Windows freeware tool called Windows Grep. I haven't used it much but it has a beginner and expert mode. It's available from www.wingrep.com.

link|flag
vote up 0 vote down

REGex Tester is a fairly useful tool.

link|flag
vote up 0 vote down

"Regexp Syntax Summary" has a concise chart detailing the different regex syntaxes for GNU grep, BRE, ERE, Emacs, Perl, Python, and TCL. It also has a section on which tools use which flavour of regex, and notes on grouping, back-references, and more esoteric bits of regexes.

link|flag
vote up 0 vote down

For an online and good regexp test/build app you can also check RegExr. Quite good.

link|flag
vote up 2 vote down

Espresso

Reference

I've been hacking away with espresso and using this syntax guide recently to teach myself a bit more regex, it's worked quite well for me. I chose it over Regex Buddy because it was free.

link|flag
vote up 8 vote down

The Regex Coach is another great regex tool which is free and made with lisp. :)

  • It tries to describe the regular expression in plain English
  • It can show a graphical representation of the regular expression's parse tree.
link|flag
Windows only though, for sad, though old versions work fine on linux. – Gregg Lind Sep 28 '08 at 4:49
Thank you, great tool! – aaandre Apr 13 at 18:12
vote up 2 vote down

I also liked the articles about how regexes actually work:

How Regexes Work

though this is more about how the insides of a regex machine actually work. I found it quite useful though.

There are a few very good regular expression articles in the Perl Journal too, though I have not had much look finding them online, and use the O'Reilly "Best of" series mainly.

link|flag
vote up 1 vote down

I use Rubular whenever I compose regular expressions. You can test your regex against strings and see what matches (including parentheses capturing). It also has a concise cheat sheet at the bottom of the page.

For in-depth info though, Mastering Regular Expressions can't be beat.

link|flag
vote up 0 vote down

Forget the big books! This book is short, direct, cheap, and doesn't patronize you like the Dummies books do.

http://www.amazon.com/Teach-Yourself-Regular-Expressions-Minutes/dp/0672325667/ref=sr_1_3?ie=UTF8&s=books&qid=1218125461&sr=1-3

rp

link|flag
vote up 3 vote down

As of about 4 months ago, I'd never used regex for anything more complicated than /[0-9]/

I read through regular-expressions.info 2 or 3 times until I felt like I really understood it, and then started applying Regex anywhere I could reasonably use it - even where it wasn't the best solution, just as a matter of practice.

I picked up RegexBuddy about a month ago, and in that time my Regex abilities have probably doubled - it's a great tool, and it makes your life so much easier with live highlighting, explanations and testing. You can also copy the explanation in to your clipboard and paste it in to your code as a comment, if you're in to that sort of thing.

link|flag
vote up 1 vote down

txt2re is an excellent online regex builder - paste in a string and click to select which sections should match and it will build the expression for you in several languages.

To see the types of things people are using regex for, check out the Regular Expression Library.

If you're looking for a quick project to help work through building your own expressions, a page scraper would be a good idea. Regex is a great way to do it, and you probably won't be able to cheat by using someone else's expression.

link|flag
vote up 7 vote down

I'd recommend this book -

http://oreilly.com/catalog/9780596528126/

It also covers how different expression engines behave too which is quite important if you're working across different language implementations.

link|flag
vote up 11 vote down

Mastering Regular Expressions, it's in the recommended reading list of both Steve Yegge and Jeff Atwood.

link|flag
vote up 7 vote down

The best resources I have found are:

But my advice is, get stuck in!

link|flag

Your Answer

Get an OpenID
or

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