How can I test the same regex against different regular expression engines?
The most powerful free online regexp testing tool is by far http://regex101.com/ - lets you select the RE engine (PCRE, JavaScript, Python), has a debugger, colorizes the matches, explains the regexp on the fly, can create permalinks to the regex playground.
Other online tools:
- http://regexpal.com/ - powered by the XRegExp JavaScript library
- http://www.rubular.com/ - Ruby-based
- Perl Regex Tutor - uses PCRE
Windows desktop tools:
- The Regex Coach - free Windows application
- RegexBuddy recommended by most, costs US$ 39.95
Jeff Atwood [wrote about regular expressions]( post:).
Other tools recommended by SO users include:
- http://www.txt2re.com/ Online free tool to generate regular expressions for multiple language (@palmsey another thread)
- The Added Bytes Regular Expressions Cheat Sheet (@GateKiller another thread)
- http://regexhero.net/ - The Online .NET Regular Expression Tester. Not free.
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.
Here are some for the Mac: (Note: don't judge the tools by their websites)
- RegExhibit - My Favorite, powerful and easy
- Reggy - Simple and Clean
- RegexWidget - A Dashboard Widget for quick testing
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.
RegexBuddy is a weapon of choice
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.
couple of eclipse plugins for those using eclipse,
http://www.brosinski.com/regex/
http://www.bastian-bergerhoff.com/eclipse/features/web/QuickREx/toc.html
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.
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.
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.
This regex tester able to test javascript, php and python http://www.piliapp.com/regex-tester/
Check out Regex Master which is free and open source regular expression tester
Also this regex plugin can be useful for eclipse and idea users.
see the accepted answer to this question: Learning Regular Expressions
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.
for online: http://regexpal.com/ for desktop: The Regex Coach
+1 For Regex Coach here. Free and does the job really well.
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.
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.
I personally like the Regular Expression Tester.
It's a free firefox plugin, so always on!
RegExr for testing with the Actionscript 3 (whichever standard that may be)
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.
© 2022 - 2024 — McMap. All rights reserved.