vote up 18 vote down star
18

Hi all,

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

flag

26 Answers

vote up 16 vote down check

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|flag
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 at 22:07
vote up 13 vote down

RegexBuddy

link|flag
vote up 6 vote down

RegexBuddy is a weapon of choice

link|flag
vote up 6 vote down

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

link|flag
I will totally judge tools by their web sites, thank you very much. ;) – Kjensen Sep 9 at 16:32
vote up 4 vote down

Rubular is free, easy to use and looks nice.

link|flag
vote up 3 vote down

RegexBuddy is great!!!

link|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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

link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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|flag
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 at 14:32
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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 utilizes the .NET regular expression engine. You can use the Regex Buddy for that. $40 isn't much to pay and Regex Buddy is one of the most powerful regex tools out there. Or you can use yet another free tool: Regex Hero.

link|flag
vote up 1 vote down

see the accepted answer to this question: Learning Regular Expressions

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

I personally like the Regular Expression Tester.

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

link|flag
vote up 0 vote down

RegExBuddy so far I concur with and endorse.

link|flag
vote up 0 vote down

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

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

link|flag
vote up -1 vote down

This is already been talking here. Duplicate.

link|flag
Mister Dev you might notice that I asked back on August 28. The "duplicate" was asked on September 11. So I did ask first and the other one is the dupe. – Onorio Catenacci Sep 25 '08 at 14:25

Your Answer

Get an OpenID
or

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