Help for this page

Select Code to Download


  1. or download this
    
    while (<>)
    ...
     chomp;
     print "$_<BR>";    # (Optional: print "$_<BR>\n"; for readability)
    };
    
  2. or download this
    my @File=<INPUT>;
    close INPUT;
    ...
     local $"="<BR>";   # (Optional: local $"="<BR>\n"; for readability)
     print "@File<BR>"; #(Optional: print "@File<BR>\n"; for readability)
    };