Possible Duplicate:
Regex for checking if a string has mismatched parentheses?
I'm trying to write a regex to match a string of numbers only, optionally enclosed in parentheses (regex must also check if parentheses are closed correctly, that is, if they exist in pars). So all of this should be considered valid by the regex: 1234567 123(45)6 (123)(456)
I came up with this using conditional patterns (note that I use spaces so the x modifier is required to make it ignore spaces):
$val = "(123)";
$regex = "^( (\()? [0-9]+ (?(2)\)) )+$";
$ret = preg_match("/{$regex}/x", $val, $matches);
However although it matches the above "(123)" correctly, it also matches the below which it shouldnt: "(123)45)" (second number has closing parentheses only)
Anyone can help?
NOTE: No nested parentheses allowed
Assuming that parentheses can't be nested, you can do this by treating digits enclosed with parentheses as if they were a single digit:
([0-9]|\([0-9]+\))*
Assuming you need nested parens, you can't do that with regex. What you can do, however, is to remove all non-parenthesis characters (this is trivial), so your text will look like ()()(())
. From there on, you just check the resulted string. What you have to do is roughly:
for($i=0; $i<strlen($parens); $i++) {
$paren = $parens[$i];
if($paren == '(')
$level ++;
else
$level --;
if($level < 0) {
// not nested correctly
break;
}
}
if($level != 0) // not nested correctly
Hope this helps :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With