vote up 10 vote down star
5

Is there a regular expression that matches valid regular expressions?

(I know there are several flavors of regexps. One would do.)

flag

1  
Somebody needs to read "Godel Escher Bach; an Eternal Golden Braid". – Paul Tomblin Dec 12 '08 at 14:25
+1 for turtles all the way down. – Gishu Dec 12 '08 at 15:10
Why do you want a regexp? Perhaps there another way to solve this. – hstoerr Dec 12 '08 at 15:51
That first comment should have been an answer ;-) – Joachim Sauer Dec 12 '08 at 23:03

6 Answers

vote up 13 vote down check

If you merely want to check whether a regular expression is valid or not, simply try to compile it with whichever programming language or regular expression library you're working with.

Parsing regular expressions is far from trivial. As the author of RegexBuddy, I have been around that block a few times. If you really want to do it, use a regex to tokenize the input, and leave the parsing logic to procedural code. That is, your regex would match one regex token (^, $, \w, (, ), etc.) at a time, and your procedural code would check if they're in the right order.

link|flag
Hi Jan, Regexpbuddy looks fantastic. Really have to get it soon. Thanks for your comment! – Thorsten79 Dec 14 '08 at 10:26
vote up 12 vote down

Unfortunately, most invalid regular expressions are invalid due to parentheses nesting errors. This is exactly the type of strings that regular expressions can't match. (Okay, some fancy regular expression systems have recursion extensions, but that's rare)

link|flag
vote up 7 vote down

As already said, you cannot describe regular expressions with a regular expression due to their recursive nature. You'll need a context free grammar for that.

But what would be the point of having such a regular expression, anyway? If you just want to check whether a regular expression is correct, you can simply try to use it (Pattern.compile(regexp) in Java) and if it screams it is not valid.

link|flag
vote up 2 vote down

You probably need a parser, not a regex. Regexes are powerful tools, but are not parsing tools. They are not well suited to nested grammars, for example.

link|flag
Yeah, that's an understatement. They just plain can't do nested grammars. – harms Dec 13 '08 at 13:17
vote up 0 vote down

From Douglas Crockford's The JavaScript Programming Language video 4 (of 4):

/\/(\[^\x00-\x1f]|[(\[^\x00-\x1f]|[^\x00-\x1f\\/])]|[^\x00-\x1f\\/[])+\/[gim]/

http://video.yahoo.com/watch/111596/1710658 at approximately -17.20.

link|flag
Want to give a synopsis instead of sending me to a video link? – LFSR Consulting Jan 26 at 22:47
@LFSR Consulting: No, I don't. I put the info about the regex in my answer. The rest of the video is irrelevant to this question. I merely gave citation information. – kajaco Jan 29 at 18:52
FF3 throws up on the above regexp as being syntacticly incorrect!? – ThomasH Jul 22 at 15:53
vote up -1 vote down

Depending on your goal I would say definately maybe.

If you want to filter regexps out from somewhere, it might prove difficult as regular expressions come in all sizes and shapes and they don't all start and end with slashes.

If you just need to know wether or not a regexp is valid there is another way. Depending on the language you're using you could try/catch

If you can be more specific I could try and give a better answer, the question is intruiging.

link|flag

Your Answer

Get an OpenID
or

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