me techie…

ramblings on technology ….

Archive for the ‘PerlTips’ Category

PerlTips – 1

Posted by sraghav on March 26, 2007

to escape particular characters in a given variable $var ->
$var =~ s/([CHARLIST])/\\$1/g;

(http://www.unix.org.ua/orelly/perl/cookbook/ch01_14.htm)

The complete Perl Bookshelf

http://www.unix.org.ua/orelly/perl/index.htm

Posted in PerlTips | Leave a Comment »