Regex Testing Tools - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:58:38Zhttp://stackoverflow.com/feeds/question/32282http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32282/regex-testing-tools18Regex Testing ToolsOnorio Catenacci2008-08-28T13:34:55Z2009-11-19T19:46:21Z
<p>Hi all,</p>
<p>I know of <a href="http://sourceforge.net/projects/regulator" rel="nofollow">The Regulator</a> for testing regular expressions. And there's also <a href="http://gskinner.com/RegExr/" rel="nofollow">RegExr</a> 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?</p>
<p><hr></p>
<p>I changed this question to community wiki</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32287#322876Answer by aku for Regex Testing Toolsaku2008-08-28T13:36:45Z2008-08-28T13:36:45Z<p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> is a weapon of choice</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32288#3228814Answer by JimmyJ for Regex Testing ToolsJimmyJ2008-08-28T13:36:46Z2008-08-28T13:36:46Z<p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a></p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32290#3229017Answer by Pat for Regex Testing ToolsPat2008-08-28T13:37:34Z2009-09-25T17:10:25Z<p>According to Jeff's <a href="http://www.codinghorror.com/blog/archives/001016.html" rel="nofollow">post</a>:</p>
<p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> recommended by most, costs US$ 39.95</p>
<p>If you don't want to pay :</p>
<ul>
<li><a href="http://regexpal.com/" rel="nofollow">http://regexpal.com/</a> Online free tool </li>
<li><a href="http://www.weitz.de/regex-coach/" rel="nofollow">The Regex Coach</a> Free tool </li>
<li><a href="http://www.perlfect.com/articles/regextutor.shtml" rel="nofollow">Perl Regex Tutorial</a></li>
</ul>
<p>Other tools recommended by SO users include:</p>
<ul>
<li><a href="http://www.rubular.com/" rel="nofollow">http://www.rubular.com/</a> Online free tool (@<a href="#32298" rel="nofollow">Neall</a>)</li>
<li><a href="http://www.txt2re.com/" rel="nofollow">http://www.txt2re.com/</a> Online free tool to generate regular expressions for multiple language (@<a href="http://beta.stackoverflow.com/questions/4736/learning-regular-expressions#4763" rel="nofollow">palmsey</a> another thread)</li>
<li>The Added Bytes <a href="http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/" rel="nofollow">Regular Expressions Cheat Sheet</a> (@<a href="http://beta.stackoverflow.com/questions/4736/learning-regular-expressions#4739" rel="nofollow">GateKiller</a> another thread)</li>
<li><a href="http://regexhero.net/" rel="nofollow">Regex Hero</a> - The Online .NET Regular Expression Tester</li>
</ul>
http://stackoverflow.com/questions/32282/regex-testing-tools/32291#322912Answer by Will Dean for Regex Testing ToolsWill Dean2008-08-28T13:37:36Z2008-08-28T13:37:36Z<p>Regexbuddy does all this. <a href="http://www.regexbuddy.com/" rel="nofollow">http://www.regexbuddy.com/</a></p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32292#322921Answer by Sam Hasler for Regex Testing ToolsSam Hasler2008-08-28T13:38:13Z2008-08-28T13:38:13Z<p>see the accepted answer to this question: <a href="http://beta.stackoverflow.com/questions/4736/learning-regular-expressions#4741" rel="nofollow">Learning Regular Expressions</a></p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32294#322943Answer by Galwegian for Regex Testing ToolsGalwegian2008-08-28T13:38:49Z2008-08-28T13:38:49Z<p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> is great!!!</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32298#322984Answer by Neall for Regex Testing ToolsNeall2008-08-28T13:39:31Z2008-08-28T13:39:31Z<p><a href="http://www.rubular.com/" rel="nofollow">Rubular</a> is free, easy to use and looks nice.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32300#323003Answer by Tim Cochran for Regex Testing ToolsTim Cochran2008-08-28T13:40:23Z2008-08-28T13:40:23Z<p>I use Expresso (<a href="http://www.ultrapico.com/" rel="nofollow">www.ultrapico.com</a>). 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.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32319#323190Answer by Pat for Regex Testing ToolsPat2008-08-28T13:47:26Z2008-08-28T13:47:26Z<p>RegExBuddy so far I concur with and endorse.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32327#323272Answer by Adam Haile for Regex Testing ToolsAdam Haile2008-08-28T13:49:28Z2008-08-28T13:49:28Z<p>I agree on RegExBuddy, but if you want free or when I'm working somewhere and not on my own system <a href="http://gskinner.com/RegExr/" rel="nofollow">RegExr</a> 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.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32354#323543Answer by Sébastien RoccaSerra for Regex Testing ToolsSébastien RoccaSerra2008-08-28T14:14:30Z2008-08-28T14:14:30Z<p>If you are an Emacs user, the command <code>re-builder</code> 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.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32365#323656Answer by Joseph Pecoraro for Regex Testing ToolsJoseph Pecoraro2008-08-28T14:17:31Z2008-08-28T14:17:31Z<p>Here are some for the Mac: (<em>Note: don't judge the tools by their websites</em>)</p>
<ul>
<li><a href="http://homepage.mac.com/roger_jolly/software/" rel="nofollow">RegExhibit</a> - My Favorite, powerful and easy</li>
<li><a href="http://code.google.com/p/reggy/" rel="nofollow">Reggy</a> - Simple and Clean</li>
<li><a href="http://robrohan.com/2008/06/25/mac-os-x-regex-widget-update-17/" rel="nofollow">RegexWidget</a> - A Dashboard Widget for quick testing</li>
</ul>
http://stackoverflow.com/questions/32282/regex-testing-tools/32398#323981Answer by Teifion for Regex Testing ToolsTeifion2008-08-28T14:25:37Z2008-08-28T14:25:37Z<p>I'll add to the vote of <a href="http://reggyapp.com/" rel="nofollow">Reggy</a> for the Mac, gonna try out some of the other ones that Joseph suggested and upvote that post tomorrow when my limit gets reset.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32591#325911Answer by Dinah for Regex Testing ToolsDinah2008-08-28T15:29:16Z2008-08-28T15:29:16Z<p>for online: <a href="http://regexpal.com/" rel="nofollow">http://regexpal.com/</a>
for desktop: <a href="http://www.weitz.de/regex-coach/" rel="nofollow">The Regex Coach</a></p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32641#326410Answer by Lee Theobald for Regex Testing ToolsLee Theobald2008-08-28T15:50:39Z2008-08-28T15:50:39Z<p>+1 For Regex Coach here. Free and does the job really well.</p>
<p><a href="http://www.weitz.de/regex-coach/" rel="nofollow">http://www.weitz.de/regex-coach/</a></p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32903#329031Answer by Josh Miller for Regex Testing ToolsJosh Miller2008-08-28T17:50:40Z2008-08-28T17:50:40Z<p>I am still a big <a href="http://weblogs.asp.net/rosherove/pages/tools-and-frameworks-by-roy-osherove.aspx" rel="nofollow">The Regulator</a> fan.<br />
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.</p>
<p>Would love it if <a href="http://weblogs.asp.net/rosherove/default.aspx" rel="nofollow">Roy Osherove</a> updated, but looks like he is busy with other things.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32913#329132Answer by Brendon for Regex Testing ToolsBrendon2008-08-28T17:53:45Z2008-08-28T17:53:45Z<p>couple of eclipse plugins for those using eclipse,<BR>
<a href="http://www.brosinski.com/regex/" rel="nofollow">http://www.brosinski.com/regex/</a></p>
<p><a href="http://www.bastian-bergerhoff.com/eclipse/features/web/QuickREx/toc.html" rel="nofollow">http://www.bastian-bergerhoff.com/eclipse/features/web/QuickREx/toc.html</a></p>
http://stackoverflow.com/questions/32282/regex-testing-tools/32965#329651Answer by grapefrukt for Regex Testing Toolsgrapefrukt2008-08-28T18:12:22Z2008-08-28T18:12:22Z<p><a href="http://gskinner.com/RegExr/" rel="nofollow">RegExr</a> for testing with the Actionscript 3 (whichever standard that may be)</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/71304#713041Answer by Benjol for Regex Testing ToolsBenjol2008-09-16T11:15:40Z2008-09-16T11:15:40Z<p>I like to use this online one:
<a href="http://www.cuneytyilmaz.com/prog/jrx/" rel="nofollow">http://www.cuneytyilmaz.com/prog/jrx/</a>
Of course, it'll be javascript regexp, but I've never yet done anything clever enough to notice the difference.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/72951#729511Answer by Mick for Regex Testing ToolsMick2008-09-16T14:32:02Z2008-09-16T14:32:02Z<p>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.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/133395#1333952Answer by Sprogz for Regex Testing ToolsSprogz2008-09-25T13:39:57Z2008-09-25T13:39:57Z<p>I use the excellent and free <a href="http://www.radsoftware.com.au/regexdesigner/" rel="nofollow">Rad Software Regular Expression Designer</a>.</p>
<p>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.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/133437#133437-1Answer by Mister Dev for Regex Testing ToolsMister Dev2008-09-25T13:45:55Z2008-09-25T13:45:55Z<p>This is already been <a href="http://stackoverflow.com/questions/56147/what-is-your-favorite-regex-editor">talking here</a>. Duplicate.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/678051#6780512Answer by Nick for Regex Testing ToolsNick2009-03-24T15:53:38Z2009-03-24T15:53:38Z<p>In the standard <strong>Python</strong> installation there is a "Tools/scripts" directory containing <strong>redemo.py</strong>. </p>
<p>This creates an <em>interactive</em> Tkinter window in which you can experiment with regexs.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/842003#8420032Answer by Steve Wortham for Regex Testing ToolsSteve Wortham2009-05-08T21:57:21Z2009-06-03T15:42:25Z<p>In the past I preferred The Regex Coach for its simplistic layout, instantaneous highlighting and its price (free).</p>
<p>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: <a href="http://regexhero.net/" rel="nofollow">Regex Hero</a>.</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/870654#8706543Answer by kimsnarf for Regex Testing Toolskimsnarf2009-05-15T20:10:36Z2009-05-15T20:10:36Z<p><a href="http://kodos.sourceforge.net/" rel="nofollow">Kodos</a> of course. Cause it's Pythonic. ;)</p>
http://stackoverflow.com/questions/32282/regex-testing-tools/1755538#17555381Answer by dungeoncrawler for Regex Testing Toolsdungeoncrawler2009-11-18T12:03:01Z2009-11-18T12:03:01Z<p>I personally like the <a href="https://addons.mozilla.org/en-US/firefox/addon/2077" rel="nofollow">Regular Expression Tester</a>.</p>
<p>It's a free firefox plugin, so always on!</p>