in reply to stripping characters from a string
$string = "Good O'l Time"; $string =~ s/\ /_/g; $string =~ s/\'//g; print $string; [download]