in reply to Split a string to remove quotes and parentheses

Is '("test123")' all that is to be split on the line? Use a regex instead of split. There are a hundred ways to write it, but here is one:
if ($string =~ /\(\"(.*+)\"\)/) { $matched = $1; }
-imran