vote up 27 vote down star
19

Is is possible to detect a valid regular expression with another regular expression? If so please give example code below.

flag
3  
What are you trying to do? – brian d foy Oct 5 '08 at 17:37

6 Answers

vote up 29 vote down check
/
^                                             # start of string
(                                             # first group start
  (?:
    (?:[^?+*{}()[\]\\]+                       # literals and ^, $
     | \\.                                    # escaped characters
     | \[(?:[^\]\\]+|\\.)*\]                  # character classes
     | \( (?:\?[:=!]|\?<[=!]|\?>)? (?1)?? \)  # parenthesis, with recursive content
     | \(\? (?:R|[+-]?\d+) \)                 # recursive matching
     )
    (?: (?:[?+*]|\{\d+(?:,\d*)?\}) [?+]? )?   # quantifiers
    \|?                                       # alternative
  )*                                          # repeat content
)                                             # end first group
$                                             # end of string
/

This is a recursive regex, and is not supported by many regex engines. PCRE based ones should support it.

Without whitespace and comments:

/^((?:(?:[^?+*{}()[\]\\]+|\\.|\[(?:[^\]\\]+|\\.)*\]|\((?:\?[:=!]|\?<[=!]|\?>)?(?1)??\)|\(\?(?:R|[+-]?\d+)\))(?:(?:[?+*]|\{\d+(?:,\d*)?\})[?+]?)?\|?)*)$/

Edit: Added some description.
Edit2: Added recursion constructs, possessive quantifiers, and string edge assertions. It now matches itself (the short version at least).

link|flag
2  
Voting you up on the presumption that this actually works. Since I've only had two cups of coffee today, I'm not up to the task of verifying it. – Just Some Guy Oct 5 '08 at 17:24
Will this validate substitutions and translations? – slashmais Oct 5 '08 at 17:27
3  
JaredPar: It is possible if the regex engine supports recursion, such as PCRE, but that can't really be called regular expressions any more. – MizardX Oct 5 '08 at 18:14
2  
Indeed, a "recursive regular expression" is not a regular expression. But this an often-accepted extension to regex engines... Ironically, this extended regex doesn't match extended regexes :D – ephemient Oct 6 '08 at 5:22
2  
"Almost everyone who knows regular expressions knows that regular expressions does not support recursion." You'd be surprised what people don't know about regular expressions. I think many people see them as an inscrutable black box, where they ask the internet what regex solves their problem and it magically works. – Chris Lutz Apr 27 at 16:25
show 4 more comments
vote up 18 vote down

Unlikely.

Evaluate it in a try..catch or whatever your language provides.

link|flag
1  
That's not very enterprisey of you. – MusiGenesis Oct 5 '08 at 17:31
1  
I think this is a much better solution than attempting to validate it via a regex.... – Mike Stone Oct 5 '08 at 19:02
vote up 6 vote down

Good question. True regular languages can not decide arbitrarily deeply nested well formed parenthesis. Ie, if your alphabet contains '(' and ')' the goal is to decide if a string of these has well-formed matching parenthesis. Since this is a necessary requirement for regular expressions the answer is no.

However: if you loosen the requirement and add recursion you can probably do it. The reason is that the recursion can act as a 'stack' letting you 'count' the current nesting depth by pushing onto this stack.

Russ Cox has written a wonderful treatise on regex engine implementation: Regular Expression Matching Can Be Simple And Fast

link|flag
Thanks for the link on Russ Cox article – njsf Oct 5 '08 at 17:47
Seems like a good read. – MizardX Oct 5 '08 at 17:49
vote up 16 vote down

No if you are strictly speaking about reguralr expressions and not including some regular expression implementations that are actually context free grammars.

There is one limitation of regular expressions which makes it impossible to write a regex that matches a regex. You cannot match implementations such as braces which are paired. Regex's use many such constructs, lets take [] as an example. Whenever there is an [ there must be a matching ]. Simple enough for a regex "[.*]".

What makes it impossible for regexe's is that they can be nested. How can you write a regex that matches nested brackets? The answer is you can't without an infinitely long regex. You can match any number of nested parens through brute force but you can't ever match an arbitrarily long set of nested brackets.

This capability is often referred to as counting (you're counting the depth of the nesting). A regex by definition does not have the capability to count.

EDIT: Ended up writing a blog post about this: Regular Expression Limitations

link|flag
vote up 2 vote down

Though it is perfectly possible to use a recursive regex as MizardX has posted, for this kind of things it is much more useful a parser. Regexes were originally intended to be used with regular languages, being recursive or having balancing groups is just a patch.

The language that defines valid regexes is actually a context free grammar, and you should use an appropriate parser for handling it. Here is an example for a university project for parsing simple regexes (without most constructs). It uses JavaCC. And yes, comments are in Spanish, though method names are pretty self-explanatory.

SKIP :
{
    " "
|   "\r"
|   "\t"
|   "\n"
}
TOKEN : 
{
    < DIGITO: ["0" - "9"] >
|   < MAYUSCULA: ["A" - "Z"] >
|   < MINUSCULA: ["a" - "z"] >
|   < LAMBDA: "LAMBDA" >
|   < VACIO: "VACIO" >
}

IRegularExpression Expression() :
{
    IRegularExpression r; 
}
{
    r=Alternation() { return r; }
}

// Matchea disyunciones: ER | ER
IRegularExpression Alternation() :
{
    IRegularExpression r1 = null, r2 = null; 
}
{
    r1=Concatenation() ( "|" r2=Alternation() )?
    { 
    	if (r2 == null) {
    		return r1;
    	} else {
    		return createAlternation(r1,r2);
    	} 
    }
}

// Matchea concatenaciones: ER.ER
IRegularExpression Concatenation() :
{
    IRegularExpression r1 = null, r2 = null; 
}
{
    r1=Repetition() ( "." r2=Repetition() { r1 = createConcatenation(r1,r2); } )*
    { return r1; }
}

// Matchea repeticiones: ER*
IRegularExpression Repetition() :
{
    IRegularExpression r; 
}
{
    r=Atom() ( "*" { r = createRepetition(r); } )*
    { return r; }
}

// Matchea regex atomicas: (ER), Terminal, Vacio, Lambda
IRegularExpression Atom() :
{
    String t;
    IRegularExpression r;
}
{
    ( "(" r=Expression() ")" {return r;}) 
    | t=Terminal() { return createTerminal(t); }
    | <LAMBDA> { return createLambda(); }
    | <VACIO> { return createEmpty(); }
}

// Matchea un terminal (digito o minuscula) y devuelve su valor
String Terminal() :
{
    Token t;
}
{
    ( t=<DIGITO> | t=<MINUSCULA> ) { return t.image; }
}
link|flag
2  
I find it remarkably retarded to comment write code half-way in english, half-way in spanish, and to comment it with verbs such as "matchear". Just pointing out. – Vicent Marti Nov 11 '08 at 20:17
2  
Being a little nicer, I do agree that you should stick to one language. And, without sounding pro-English or "your language sucks", Linus Torvalds at least already suggests a standard. – Chris Lutz Apr 27 at 16:42
I agree that using Spanish, English and Spanglish in the same code is not a happy practice. The problem is I'm used to code in English, but there were some guidelines to follow (such as commenting in Spanish, or using certain names for tokens) in the project. Anyway, the point was just to give an idea on the algorithm, not to give some full reference code. – Santiago Palladino Apr 27 at 17:29
vote up 1 vote down

The above may or may not be useful in practice (I didn't review them in detail, nor am I a particularly good judge), but formally, IIRC (at least some) regular expression languages are Turing complete, and as such it is impossible to construct a tester that will correctly evaluate the correctness of all possible regular expressions in those languages. See Gödel's Incompleteness Theorem and the Church-Turing thesis.

link|flag

Your Answer

Get an OpenID
or

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