vote up 5 vote down star
4

My applications frequently use Regex for input validation.

Most of the Regex values that I need are pretty common (email address, basic types, etc). What is a good place to both learn about Regex creation and find common Regex patterns?

flag

20% accept rate
I like regexlib.com, but I am curious about other good locations, and what is industry standard. – pearcewg Oct 24 '08 at 20:31

11 Answers

vote up 6 vote down check

I have this cheat sheet pinned to my cubicle wall...

^   Start of String
$   End of String
.   Matches any single char, but not line breaks
-   Indicates a range. "0-3" will match 0,1,2, or 3
[]  Character class. "gr[ae]y" will match "gray" or "grey"
|   Alternation (or) "thisPattern|thatPattern" will match either. 
?   Preceeding optional. "colou?r" will match "color" or "colour"
*   Matches the preceeding token 0 or more times. "a*" will 
    match "", "a", "aaa", or "abc"
{}  Number of specific matches "(abc){2}" will match "abcabc" but not "abcdabc"
()  Grouping operator

and a program called RegexDesigner to test them.

link|flag
A cheat sheet is a great idea! – pearcewg Oct 25 '08 at 22:24
vote up 8 vote down

I like the explanations at http://www.regularexpressions.info

link|flag
Yes, a great site for introduction or reference. – harpo Oct 24 '08 at 20:45
vote up 7 vote down

http://regexlib.com

link|flag
vote up 2 vote down

Try Regular-Expressions.info. They also sell tools but the tutorials are pretty good.

link|flag
vote up 2 vote down

Use a regular expression animator to see how they work. There are several different forms of notation for regular expressions, for instance SQL notation versus UNIX notation, so don't get hung up on the coding. Learn what is actually taking place when a match is made.

Here are a couple of possibilities

link|flag
vote up 1 vote down

I like the (Python Regular Expression Howto)[http://www.amk.ca/python/howto/regex/] it provides a (reasonably) quick reference as well as some interactive examples showing regexes in action.

Obviously, this is a little python centric, though python uses a regex syntax shared by Perl, Java, etc.

link|flag
vote up 1 vote down

I use this one a bunch: http://www.regular-expressions.info/

link|flag
vote up 1 vote down

I've found Regular-Expressions.info to be most helpful. They also include examples for different languages.

link|flag
vote up 1 vote down

stackoverflow.com is also not bad ;-)

Edit http://stackoverflow.com/questions/tagged/regex

link|flag
1  
If only you had added a URL to SO articles tagged regex... – Michael Dillon Oct 22 at 17:27
That is easy enough. – Tim Oct 22 at 17:44
vote up 0 vote down

http://regex.larsolavtorvik.com/ There's this cool tool in which you can test your regular expressions online as implemented in different languages (PHP/Perl/JavaScript). It's nice for tesing. For each language you have a cheatsheet reference right beside the tool. It's great because it's both a cheatsheet and a testing tool. I like to craft my regular expression in there.

http://www.regular-expressions.info/tutorial.html This is the site of the RegexBuddy tool which I highly recommend. There's a cool tutorial in there, in which I learned most of what I know about regular expressions.

link|flag
vote up 0 vote down

I find that a lot of people are using my Regular Expression Tester which allows the testing of Regular Expressions using the .NET RegEx classes.

For general information www.regular-expressions.info is good.

link|flag

Your Answer

Get an OpenID
or

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