Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a tool that can take a regex and give you some idea of what it is supposed to match?

perhaps it can parse the regex and output what each rule is?

If not, can someone give me an idea what this expression is matching?

^[\p{L}\s\-\!\$\(\)\=\@\d_\']+$
share|improve this question
I like Expresso: ultrapico.com/Expresso.htm It is intended for .NET-flavoured regular expressions. It can break down a regex and show you what each part is supposed to match. It won't be able to decode the semantics though. – FrustratedWithFormsDesigner Apr 20 '12 at 15:53
7  
I believe the most common tool used for parsing regex and explaining each part is called a programmer. – Oded Apr 20 '12 at 15:55
1  
hey thanks @Frustrated, this looks promising! can you post it as an answer so I can mark it as such? – Josh Apr 20 '12 at 15:56
wow so many great answers, i don't know which one to choose, thank you kindly to everyone, this is perfect! – Josh Apr 20 '12 at 21:33

migrated from programmers.stackexchange.com Apr 20 '12 at 21:36

5 Answers

RegexBuddy gives detailed information about the regular expressions.

You can also paste the expressions from several languages.

share|improve this answer
^       - Match start of line
[       - Start of character class (any character inside the class matches)
\p{L}   - Any Unicode character that is a defined as a Letter
\s      - Whitespace characters
\-      - Dash (-)
\!      - Bang (!)
\$      - Dollar sign
\(      - ( character
\)      - ) character
\=      - = character
\@      - @ character
\d      - Numerals (0-9)
_       - undrescore (_) character
\'      - Single quote (')
]       - End of character class
+       - Match the preceding character 
          (or a character in the preceding character class) one or more times
$       - Match end of line

The end result is that any line that contains only the characters within the character class will match. Most punctuation will not match, for instance (so if the line contains a #, the regex will not match the line).

share|improve this answer
1  
Certainly a useful list. However they were asking more about a tool. – Michael Durrant Apr 20 '12 at 21:42
1  
@MichaelDurrant - From the question: "If not, can someone give me an idea what this expression is matching?". – Oded Apr 21 '12 at 8:02
yes thanks Oded for parsing that out for me, it is much appreciated! – Josh Apr 24 '12 at 15:31

I like Expresso. It is intended for .NET-flavoured regular expressions. It can break down a regular expression and show you what each part is supposed to match. It won't be able to decode the semantics though. That's your job. ;)

share|improve this answer

I program in Ruby and I had this question a couple of months ago.

The best one I found for ruby was

http://www.rubular.com/

Well designed and it works well. Check it out!

I also liked

http://gskinner.com/RegExr/ (NOT ruby specific)

share|improve this answer

I have used kregexpeditor. This is a part of K Desktop Environment. It can help you visualize the regex graphically.

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.