in reply to Split a string to remove quotes and parentheses
Will print:$s = '("test123")'; $s =~ s/(\("|"\))//g; print "$s\n";
test123
Robert Wilensky, University of California
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Split a string to remove quotes and parentheses
by perl_99_monk (Novice) on Feb 20, 2006 at 17:11 UTC |