Help for this page

Select Code to Download


  1. or download this
    while (<$fh>) {
       s/\x0D\x0A\z//;
       ...
    }
    
  2. or download this
    local $/ = "\x0D\x0A";
    while (<$fh>) {
       chomp;
       ...
    }
    
  3. or download this
    while (<$fh>) {
       s/\s+$//;
       ...
    }