in reply to Passing strings without quotes
No, but it should be easy to mass-convert the unquoted form into the quoted one:
$ perl -pi -e 's/(\+\d+)/"$1"/g' file.pl
-sam
In Section
Seekers of Perl Wisdom
in reply to Passing strings without quotes
$ perl -pi -e 's/(\+\d+)/"$1"/g' file.pl
-sam