RegEx Useful resources
Moderator: General Moderators
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
RegEx Useful resources
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.
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
- DaveTheAve
- Forum Contributor
- Posts: 385
- Joined: Tue Oct 03, 2006 2:25 pm
- Location: 127.0.0.1
- Contact:
DocForge
Regular expressions reference
and
Regular expressions reference specific to PHP
DocForge is a public wiki, so anyone can add info and examples.
and
Regular expressions reference specific to PHP
DocForge is a public wiki, so anyone can add info and examples.
- Kieran Huggins
- DevNet Master
- Posts: 3635
- Joined: Wed Dec 06, 2006 4:14 pm
- Location: Toronto, Canada
- Contact:
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/
JRX: real-time JavaScript RegExp evaluator
http://www.cuneytyilmaz.com/prog/jrx/
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
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
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
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/
http://www.ilovejackdaniels.com/cheat-s ... eat-sheet/
Re: RegEx Useful resources
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.
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.
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: RegEx Useful resources
Very cool, thanks for sharing!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.
Re: RegEx Useful resources
Online tool for designing and testing regular expressions:
http://www.regex.cc
It uses ajax and perl for evaluating the expressions.
http://www.regex.cc
It uses ajax and perl for evaluating the expressions.
Re: RegEx Useful resources
Yet another online tool: http://www.lumadis.be/regex/test_regex.php
Re: RegEx Useful resources
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
http://oreilly.com/catalog/9780596528126/index.html
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Re: RegEx Useful resources
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.