Regex Testing Tools - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:58:38Z http://stackoverflow.com/feeds/question/32282 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32282/regex-testing-tools 18 Regex Testing Tools Onorio Catenacci 2008-08-28T13:34:55Z 2009-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#32287 6 Answer by aku for Regex Testing Tools aku 2008-08-28T13:36:45Z 2008-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#32288 14 Answer by JimmyJ for Regex Testing Tools JimmyJ 2008-08-28T13:36:46Z 2008-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#32290 17 Answer by Pat for Regex Testing Tools Pat 2008-08-28T13:37:34Z 2009-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#32291 2 Answer by Will Dean for Regex Testing Tools Will Dean 2008-08-28T13:37:36Z 2008-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#32292 1 Answer by Sam Hasler for Regex Testing Tools Sam Hasler 2008-08-28T13:38:13Z 2008-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#32294 3 Answer by Galwegian for Regex Testing Tools Galwegian 2008-08-28T13:38:49Z 2008-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#32298 4 Answer by Neall for Regex Testing Tools Neall 2008-08-28T13:39:31Z 2008-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#32300 3 Answer by Tim Cochran for Regex Testing Tools Tim Cochran 2008-08-28T13:40:23Z 2008-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#32319 0 Answer by Pat for Regex Testing Tools Pat 2008-08-28T13:47:26Z 2008-08-28T13:47:26Z <p>RegExBuddy so far I concur with and endorse.</p> http://stackoverflow.com/questions/32282/regex-testing-tools/32327#32327 2 Answer by Adam Haile for Regex Testing Tools Adam Haile 2008-08-28T13:49:28Z 2008-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#32354 3 Answer by Sébastien RoccaSerra for Regex Testing Tools Sébastien RoccaSerra 2008-08-28T14:14:30Z 2008-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#32365 6 Answer by Joseph Pecoraro for Regex Testing Tools Joseph Pecoraro 2008-08-28T14:17:31Z 2008-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#32398 1 Answer by Teifion for Regex Testing Tools Teifion 2008-08-28T14:25:37Z 2008-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#32591 1 Answer by Dinah for Regex Testing Tools Dinah 2008-08-28T15:29:16Z 2008-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#32641 0 Answer by Lee Theobald for Regex Testing Tools Lee Theobald 2008-08-28T15:50:39Z 2008-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#32903 1 Answer by Josh Miller for Regex Testing Tools Josh Miller 2008-08-28T17:50:40Z 2008-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#32913 2 Answer by Brendon for Regex Testing Tools Brendon 2008-08-28T17:53:45Z 2008-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#32965 1 Answer by grapefrukt for Regex Testing Tools grapefrukt 2008-08-28T18:12:22Z 2008-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#71304 1 Answer by Benjol for Regex Testing Tools Benjol 2008-09-16T11:15:40Z 2008-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#72951 1 Answer by Mick for Regex Testing Tools Mick 2008-09-16T14:32:02Z 2008-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#133395 2 Answer by Sprogz for Regex Testing Tools Sprogz 2008-09-25T13:39:57Z 2008-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 -1 Answer by Mister Dev for Regex Testing Tools Mister Dev 2008-09-25T13:45:55Z 2008-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#678051 2 Answer by Nick for Regex Testing Tools Nick 2009-03-24T15:53:38Z 2009-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#842003 2 Answer by Steve Wortham for Regex Testing Tools Steve Wortham 2009-05-08T21:57:21Z 2009-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#870654 3 Answer by kimsnarf for Regex Testing Tools kimsnarf 2009-05-15T20:10:36Z 2009-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#1755538 1 Answer by dungeoncrawler for Regex Testing Tools dungeoncrawler 2009-11-18T12:03:01Z 2009-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>