Help for this page

Select Code to Download


  1. or download this
    open(my $fh, '<', "apache.txt") or die $!;
    while (<$fh>) {
        s/\bis\b/are/g;
        print;
    }
    
  2. or download this
    perl -pe"s/\bis\b/are/g" apache.txt