|
|
| Perl Monk, Perl Meditation | |
| PerlMonks |
How do I unescape a string?by faq_monk (Initiate) |
| on Oct 08, 1999 at 00:20 UTC ( #591=perlfaq nodetype: print w/ replies, xml ) | Need Help?? |
|
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
It depends just what you mean by ``escape''.
URL escapes are dealt with in the perlfaq9 manpage. Shell escapes with the backslash (
s/\\(.)/$1/g;
This won't expand
|
|