Help for this page

Select Code to Download


  1. or download this
    foreach $page (@files) {
         chomp $page;
         $page =~ s/\r//g;
         # ...
    }
    
  2. or download this
    <c>foreach $page (@files) {
         $page =~ s/[\r\n]//g;
         # ...
    }