Is their any wizards or tools to create and test regular expressions for PHP, because it is so difficult :( ? thanks :)

link|improve this question

56% accept rate
Related question: stackoverflow.com/questions/514834/… – David Hanak Feb 13 '09 at 7:12
feedback

19 Answers

RegexBuddy is a widely popular app for this purpose.

link|improve this answer
RegexBuddy is so good, I can't express it in 300 characters. Paid back whatever ($30 or $50) I paid for it within days. – MattBelanger Feb 18 '09 at 0:56
feedback

reAnimator is a nice tool to visualize your regex as a state machine- I find it useful sometimes.

Python also allows you to view a regex parse tree, which can be helpful if you learn to read it.

link|improve this answer
This is very cool! – Chris Ballance Feb 12 '09 at 21:52
feedback

Unit testing with example data. Create two arrays, one with matching data, and one with non-matching data if necessary to test edge cases.

link|improve this answer
Whilst I like manually driven tools, like RegExpBuddy, and an add-in that's available for IntelliJ, having some unit tests to increase the long-term chances of the expression remaining valid is always a good idea. – belugabob Jul 15 '09 at 9:59
feedback

The Regex Coach is a great free regex tool that I use fairly regularly.

I like RegEx Buddy also, but it costs $40 and I'm cheap.

link|improve this answer
feedback

Trial and error success.

Because I've spent the time to actually learn it, instead of relying on something else to do it for me.

Same applies to any language/tool - take a bit of time to learn the syntax and general ethos, and you'll be far more productive than relying on intellisense, code hinting, and so on.

link|improve this answer
1  
Hear, hear! (And the regex language isn't nearly as complex as it seems at first glance... I get them right on the first try much more often than not.) – Dave Sherohman Jul 15 '09 at 9:54
I get them right by the third try much more often than not, but I'll get back to you in a few years. – Telemachus Jul 16 '09 at 12:48
feedback

i always use this: http://gskinner.com/RegExr/

link|improve this answer
feedback

Expresso is free and gives nice breakup and explanation of the regex under analysis.

link|improve this answer
That's the one I use too – NikolaiDante Jul 13 '09 at 21:28
feedback

Trial and error.

And print_r.

link|improve this answer
That sounds like a most painful way to build Regexes. – Chris Ballance Feb 12 '09 at 21:51
@Ballance, All the more a better learning experience. =] – strager Feb 12 '09 at 22:05
feedback

I really like RegexPal, which is simple, clear, requires no installation and freely available online.

link|improve this answer
feedback

Online... there's an ajax regex checker with js/pcre/posix implementations, that checks as you type.. way cool.

http://www.rexv.org

link|improve this answer
feedback

I've written my own tool: Regular Expression Tester. Unlike many other web-based tools, this one can break a regex down into tokens and describe what each token is doing. It's great for examining new expressions, or expressions that you wrote a long time ago and don't quite remember.

link|improve this answer
feedback

I generally use Rubular when I'm working on testing a regular expression. You could also try txt2re.com, it can be handy for helping you figure out an expression and can even generate relevant PHP code.

link|improve this answer
feedback

Here is another online regular expression tester.

http://www.fileformat.info/tool/regex.htm

link|improve this answer
feedback

Here's another online regex tester.

link|improve this answer
feedback

I used to use The Regex Coach. But because it's Perl based and most of the time I'm testing .NET regular expressions, I now use this online .NET regular expression tester.

link|improve this answer
feedback

I liked the emacs re-builder.

link|improve this answer
feedback

Since you're talking about PHP, you may be interested in Codebench. It is a tool, not specifically to break down regexes (you've got a lot of those listed already), but to benchmark them. Since it is rather generic, you can also compare non-regex solutions as often native string functions are faster. Moreover, it allows you to benchmark against multiple subjects (targets) as well. Hope you find it useful.

link|improve this answer
feedback

I'm using unit-testing. That way, I can grow my regex incrementally, being certain that the first cases I tested still pass. And if ever I have to modify it, I have all my tests to back me up.

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.