tags:

views:

796

answers:

10

I am looking for recommendations for a browser based regex sandbox to practice some proof of concept expressions.

+6  A: 

I've used http://www.rubular.com/ a few times, seems to do the job.

RM
+4  A: 

I like RegExPal.com. Good luck.

Chris
A: 

Try NRegEx.

Lee Harold
+3  A: 

This one's pretty good too: RegExr

kchau
Also has a downloadable AIR app which is nice
John Sheehan
A: 

For online sandboxes for several different languages, platforms, and open source applications, see this similar SO question.

flamingLogos
+1  A: 

Which flavor? Regex support is included in most of the major programming languages in use today, in editors and IDE's, in command-line tools like grep and findstr, and lots of other places. Every one of these tools/languages/applications has its own regex flavor, and no two flavors are completely alike.

For the regex flavor of a specific programming language, I just Google for "<language> regex tester"; there always seems to be at least one online tester available.

Alan Moore
A: 

I'm biased of course because I wrote it. But there's a good one for .NET regular expressions called Regex Hero.

Steve Wortham
A: 

I wrote my own Regular Expression (REGEX) Online Test Sandbox with a Match and Replace feature since I could not find one with a Replace feature. It's running under a DOT NET (.NET) Engine. Great for testing Regex patterns, but also good for quick and dirty reformatting of text files and strings.

http://regex.cyberpine.com

Jason
A: 

This is fairly handy for .net based stuff:

http://regexlib.com/

Paddy