in reply to Re: Using qw to check for balanced parentheses (oops)
in thread Using qw to check for balanced parentheses
sub balanced { local $_ = shift; s/[^()]//g; eval "qw($_)"; ! $@ }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using qw to check for balanced parentheses (oops)
by ikegami (Patriarch) on Sep 16, 2011 at 19:51 UTC | |
by Anonymous Monk on Oct 23, 2014 at 16:04 UTC | |
|
Re^3: Using qw to check for balanced parentheses (oop)
by tye (Sage) on Sep 16, 2011 at 19:42 UTC |