- or download this
$rxNest = qr{(?x)
\(
...
\)
};
$string =~ /$rxNest/;
- or download this
$rxNest = qr{
\(
(?: (?>[^()]+) | (??{$rxNest}) )*
\)
}x;
- or download this
(?{ local @memoList = (@memoList, $+) })
- or download this
(?{ local $offset = $offset + 1; local $memoList[$offset] = $+ })
- or download this
$string =~ /^$rxNest\z/;