in reply to Arrays: More than one word
escape(), unescape()
use CGI qw/escape unescape/;
$q = escape('This $string contains ~wonderful~ characters');
$u = unescape($q);
http://stein.cshl.org/WWW/software/CGI/cgi_docs.html
|
|---|