Page 1 of 2

RegEx Useful resources

Posted: Tue Sep 19, 2006 11:41 am
by RobertGonzalez
For those of you who find a useful items related to regular expressions, if you could post a link to it in this thread, it would be most appreciated.

Posted: Tue Sep 19, 2006 11:42 am
by RobertGonzalez

Posted: Thu Oct 05, 2006 11:01 am
by DaveTheAve

Posted: Thu Nov 23, 2006 4:21 am
by Jenk

DocForge

Posted: Sat Feb 24, 2007 4:59 pm
by veridicus
Regular expressions reference

and

Regular expressions reference specific to PHP

DocForge is a public wiki, so anyone can add info and examples.

Posted: Sun Feb 25, 2007 12:06 am
by Kieran Huggins
This one was posted somewhere else before as well, but it seems appropriate here as well:

JRX: real-time JavaScript RegExp evaluator
http://www.cuneytyilmaz.com/prog/jrx/

Posted: Wed Apr 11, 2007 11:03 am
by feyd
The following was mistakenly posted to a new thread.
trishjo wrote:Check out this regex tutorial: http://e-texteditor.com/blog/2007/regul ... s_tutorial

I found it pretty cool, especially the cheat sheet. I have already printed it out and posted on the wall beside my screen.

Trish

Posted: Wed Apr 11, 2007 11:25 am
by RobertGonzalez
Of all the I Love Jack Daniels cheat sheets I posted, I cannot believe I have forgotten to post this one...

http://www.ilovejackdaniels.com/cheat-s ... eat-sheet/

Posted: Fri Apr 13, 2007 8:05 pm
by Gurzi

Re: RegEx Useful resources

Posted: Sun Apr 06, 2008 4:23 pm
by aCa
I released a beta of my regex tool earlier this week at http://regex.larsolavtorvik.com/ . It uses AJAX to give you feedback right away without having to submit the page.

My goal is to make it easy for you to test your regex patterns.

So far it supports PHP PCRE, PHP POSIX, Javascript and Perl. I plan to add more languages later.

Feel free to come with comments and suggestions on my blog at http://larsolavtorvik.com/ about bugs, improvments etc to make the tool better for all of us that uses regex regulary.

Re: RegEx Useful resources

Posted: Mon Apr 07, 2008 12:16 pm
by John Cartwright
aCa wrote:I released a beta of my regex tool earlier this week at http://regex.larsolavtorvik.com/ . It uses AJAX to give you feedback right away without having to submit the page.

My goal is to make it easy for you to test your regex patterns.

So far it supports PHP PCRE, PHP POSIX, Javascript and Perl. I plan to add more languages later.

Feel free to come with comments and suggestions on my blog at http://larsolavtorvik.com/ about bugs, improvments etc to make the tool better for all of us that uses regex regulary.
Very cool, thanks for sharing!

Re: RegEx Useful resources

Posted: Fri Sep 05, 2008 3:38 pm
by Lydecker
Online tool for designing and testing regular expressions:

http://www.regex.cc

It uses ajax and perl for evaluating the expressions.

Re: RegEx Useful resources

Posted: Sat Sep 06, 2008 7:28 am
by GeertDD

Re: RegEx Useful resources

Posted: Sun Sep 07, 2008 1:28 pm
by Luke
I had always struggled with regular expressions until I read "Mastering Regular Expressions" by Jeffrey Friedl. He did a great job of making a really mundane subject very interesting and even humorous at times. I wholly recommend it.

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

Re: RegEx Useful resources

Posted: Mon Sep 08, 2008 12:39 pm
by RobertGonzalez
I'd ++ Ninja's recommendation. He was able to teach me a thing or two about regex in an emergency situation based on something he recalled from that book.