tags:

views:

596

answers:

9

Hi, I am a C# developer, I have been looking at regular expressions (regex) and wanted to know if anyone knows about useful tools for building regular expressions - like a regex query builder?

+5  A: 

Have a look at

You should be able to find a lot more for your validation

c# regex builder

astander
I just nabbed Expresso. Looks pretty useful.
MadMAxJr
+1  A: 

Also worthy of mention are Regex Buddy and Regex Magic - the latter being ideal if you really want to hide from the pain. :-)

middaparka
+1  A: 

Check regexlib.com if you want an online option.

slugster
+3  A: 

I think, greatest regex editor is gskinner. It provides a lot of extremely useful options. At least for my cases.

Also it has dictionary about majority of regex expressions and has beatiful tips, when the pointer is hovering above the snippet of your regex.

I found it the most appropriate regex editor.

Alex
+1  A: 

And there is also the "headache relief for programmers :: regular expression generator", http://txt2re.com/

jbochi
A: 

Emacs has an re-builder that's quite useful (if you're an Emacs user).

Noufal Ibrahim
+1  A: 

A good online tester that I regularly use is Derek Slagers: link. It doesn't have fancy highlighting and other features, but it does help a lot with developing/testing.

Christian Madsen
A: 

RegexHelper is a Notepad++ plugin that lets you test regular expressions against open documents.

Lawrence Barsanti
A: 

Regular Expression Designer My favorite free alternative.

Cedrik