Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: How to find matching pairs

by I0 (Priest)
on Mar 12, 2002 at 09:47 UTC ( [id://151075]=note: print w/replies, xml ) Need Help??


in reply to How to find matching pairs

$text = "A(B(2)+C(D())),\nTT(TT()+TT(TT()))"; $text = doFunc( "MAIN", $text ); # print "Example: $text\n"; sub doFunc{ my( $theFunc, $theParam ) = @_; # FIXME: greedy match fails with: 'TT(TT()+TT(TT()))' my $re; {local $^W=0; ($re=$theParam)=~s/((\()|(\))|.)/${[')']}[!$3]\Q$1\E$ +{['(']}[!$2]/gs; $re= join'|',map{quotemeta}eval{$theParam=~/$re/};} die $@ if $@=~/unmatched/; $theParam =~ s/([A-Z]+)\(($re)\)/&doFunc($1,$2)/geo; my $result = ""; if( $theFunc eq "MAIN" ) { $result = $theParam; } else { # dummy switch here for demonstration # this would be an elsif for each function $result = "func $theFunc returns <$theParam>"; } return $result; }
Update: Why does this dump core when the /o is removed?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://151075]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-20 01:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found