Help for this page

Select Code to Download


  1. or download this
    my $replacestring = "TOM";
    open(my $infile,"<","inputfile.txt") or die $!;
    ...
    }
    close $infile;
    close $outfile;
    
  2. or download this
    my $string = "TOM";
    open(my $infile,"<","inputfile.txt") or die $!;
    ...
    }
    close $infile;
    close $outfile;