in reply to Split a string to remove quotes and parentheses
if ($string =~ /\(\"(.*+)\"\)/) { $matched = $1; } [download]