Help for this page

Select Code to Download


  1. or download this
    while(my $line = <$in>){
        $line =~ s/\*$//;
        print $line;
        }
    
  2. or download this
    while(my $line = <$in>){
        $line =~ s/\*\s$//;
        print $line;
    }