in reply to Split a string to remove quotes and parentheses
$s = '("test123")'; $s =~ s/\W//g; print "$s\n" [download]