Help for this page

Select Code to Download


  1. or download this
    $text =~ tr/\r\n//d;    # using tr///
    $text =~ s/[\r\n]+//g;  # using s///
    
  2. or download this
    
    # Contains a linefeed
    ...
    } else {
      print "No linefeeds detected in the text.\n";
    }