up vote 35 down vote favorite
34
share [g+] share [fb]

I know of The Regulator for testing regular expressions. And there's also RegExr for testing regular expressions as well. Does anyone know of other regex testing tools? Do any of these tools allow you to specify which RE engine you're testing against?


I changed this question to community wiki

link|improve this question
feedback

28 Answers

up vote 32 down vote accepted

According to Jeff's post:

RegexBuddy recommended by most, costs US$ 39.95

If you don't want to pay :

Other tools recommended by SO users include:

link|improve this answer
rubular is great, online and free... – spinodal Sep 25 '08 at 13:44
I love regex coach - it does dynamic searching as you type. The only thing is that it seems like it's gone into hibernation. – aronchick May 13 '09 at 22:07
1  
txt2re.com tool nice to start learn regular expression. – javaloper Dec 9 '09 at 14:23
regexhero.net/tester is a very nice tool – roman m Dec 10 '10 at 18:13
+1 for regexpal.com it's my favorite. :D – Galled Nov 28 '11 at 22:32
feedback

RegexBuddy

link|improve this answer
feedback

I use Expresso (www.ultrapico.com). It has a lot of nice features for the developer. The Regulator used to be my favorite, but it hasn't been updated in so long and I constantly ran into crashes with complicated RegExs.

link|improve this answer
+1 Its all good now. Theres been an update in 09. Expresso 3.0, its pretty stable. – gideon Dec 9 '10 at 8:40
feedback

Here are some for the Mac: (Note: don't judge the tools by their websites)

link|improve this answer
2  
I will totally judge tools by their web sites, thank you very much. ;) – Kjensen Sep 9 '09 at 16:32
feedback

RegexBuddy is a weapon of choice

link|improve this answer
feedback

If you are an Emacs user, the command re-builder lets you type an Emacs regex and shows on the fly the matching strings in the current buffer, with colors to mark groups. It's free as Emacs.

link|improve this answer
feedback

Rubular is free, easy to use and looks nice.

link|improve this answer
feedback

I use the excellent and free Rad Software Regular Expression Designer.

If you just want to write a regular expression, have a little help with the syntax and test the RE's matching and replacing then this fairly light-footprint tool is ideal.

link|improve this answer
feedback

RegexBuddy is great!!!

link|improve this answer
feedback

I agree on RegExBuddy, but if you want free or when I'm working somewhere and not on my own system RegExr is a great online (Flash) tool that has lots of pre-built regex segments to work with and does real-time pattern matching for your testing.

link|improve this answer
You could carry around a portable installation of RegexBuddy on a USB stick whenever you're not on your own system. – Jan Goyvaerts Nov 23 '09 at 14:32
+1 .. I like this one a lot! – BrunoLM Aug 29 '10 at 20:27
feedback

Kodos of course. Cause it's Pythonic. ;)

link|improve this answer
feedback

Regexbuddy does all this. http://www.regexbuddy.com/

link|improve this answer
feedback

couple of eclipse plugins for those using eclipse,
http://www.brosinski.com/regex/

http://www.bastian-bergerhoff.com/eclipse/features/web/QuickREx/toc.html

link|improve this answer
feedback

In the standard Python installation there is a "Tools/scripts" directory containing redemo.py.

This creates an interactive Tkinter window in which you can experiment with regexs.

link|improve this answer
feedback

In the past I preferred The Regex Coach for its simplistic layout, instantaneous highlighting and its price (free).

Every once in awhile though I run into an issue with it when trying to test .NET regular expressions. For that, it turns out, it's better to use a tool that actually uses the .NET regular expression engine. That was my whole reason to build Regex Hero last year. It runs in Silverlight, and as such, runs off of the .NET Regex Class library directly.

link|improve this answer
RegexBuddy does not use the .NET regex engine. It uses the JGSoft engine, which is just as good, but with a slightly different feature set. For example, it doesn't have .NET's "balanced matching" feature, but it does support unrestricted, variable-length lookbehind expressions--the only regex flavor besides .NET to do so. As for Regex Hero, it's not really free; the online version is a demo that constantly nags you to buy the "professional" version. – Alan Moore Dec 10 '10 at 22:01
@Alan - Thanks for the correction. I wrote this answer a long time ago when Regex Hero was completely free and light on features. I started charging for the professional version last December. – Steve Wortham Dec 10 '10 at 22:39
feedback

see the accepted answer to this question: Learning Regular Expressions

link|improve this answer
feedback

I'll add to the vote of Reggy for the Mac, gonna try out some of the other ones that Joseph suggested and upvote that post tomorrow when my limit gets reset.

link|improve this answer
feedback

for online: http://regexpal.com/ for desktop: The Regex Coach

link|improve this answer
feedback

I am still a big The Regulator fan.
There are some stability problems but these can be fixed by disableing the Intellisense. It gets mad with some expressions and typos in building an expression.

Would love it if Roy Osherove updated, but looks like he is busy with other things.

link|improve this answer
feedback

RegExr for testing with the Actionscript 3 (whichever standard that may be)

link|improve this answer
feedback

I like to use this online one: http://www.cuneytyilmaz.com/prog/jrx/ Of course, it'll be javascript regexp, but I've never yet done anything clever enough to notice the difference.

link|improve this answer
feedback

How much is your time worth? Pay the $40 and get RegexBuddy. I did, and I even upgraded from 2.x version to 3.x. It has paid for itself many times over.

link|improve this answer
feedback

I personally like the Regular Expression Tester.

It's a free firefox plugin, so always on!

link|improve this answer
feedback

Also this regex plugin can be useful for eclipse and idea users.

link|improve this answer
feedback

Check out Regex Master which is free and open source regular expression tester

link|improve this answer
feedback

RegExBuddy so far I concur with and endorse.

link|improve this answer
feedback

+1 For Regex Coach here. Free and does the job really well.

http://www.weitz.de/regex-coach/

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.