in reply to Regex Confusion
I also want to eliminate all newline characters from a string
$string =~ s/\n//g; [download]
This safer version of "chop" removes any trailing string that corresponds to the current value of $/ (also known as $INPUT_RECORD_SEPARATOR in the English module).