perl problem
date posted 24th January 2001 17:00
Can anyone interperet this subroutine as I know little about perl.
# STRIP SUBROUTINE
sub strip {
my($cheese)= @_;
$cheese =~ s///g;
$cheese =~ s/
//g;
$cheese =~ s/
//g;
$cheese =~ s/|//g;
$cheese=~ s/["]/"/g;
$cheese =~ s/%95//g;
return ($cheese);
thanks in advance
Rob
|