http://qs321.pair.com?node_id=526134


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