up vote 5 down vote favorite
2
share [g+] share [fb]

I learned a lot of Perl RegEx syntax rules, but probably the only way to actually be able to write them is to do a bunch of 'RegEx' related exercises.

I looked over the other "Learn RegEx" threads on StackOverflow, but haven't found anything similar.

Is there any collection of such exercises? In form of book, HTML, with/without answers, it doesn't matter, just to keep me writing RegExes for a while.

link|improve this question

feedback

5 Answers

up vote 3 down vote accepted

I suggest browsing the regex tagged questions on this site and experiment with your own answers without peaking at the current ones. You don't need to post your answers, but I bet that sometimes you'll come up with answers that are worth publishing.

Three good things with this approach:

  1. You'll be working with real-world problems.
  2. You might learn stuff about other programming languages as you go. ('Tis always good to learn new languages).
  3. You probably will be helping the world find good answers to real world regex questions.
link|improve this answer
+1 I haven't found what I looked for, but this is closest match :) – Jox Dec 29 '08 at 15:53
feedback

My books Learning Perl and Learning Perl Student Workbook each have regular expression exercises and answers.

link|improve this answer
Brian, I'm reading "Learning Perl" 5th, and I know about exercises, but, I need more (complex) exercises... Only 5-8 per chapter (that makes only ~20 for RegEx, and these are pretty basic. – Jox Dec 29 '08 at 15:42
feedback

Work through Mastering Regular Expressions, playing with each new construct introduced: it'll teach you everything you ever wanted to know, and even stuff you didn't.

link|improve this answer
feedback

Try HTML page scraping. Scanning HTML (that is not always well-formed) is a great way to hone your regex skills. I'd suggest finding pages with multiple items and writing a script that will turn them into a summary or RSS feed.

link|improve this answer
Having writen some 15 line regular expressions recently to do just this, I have to agree. :) – cletus Dec 22 '08 at 14:39
feedback

Just check out the source for Regexp::Common:

http://search.cpan.org/~abigail/Regexp-Common-2.122/lib/Regexp/Common.pm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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