Help for this page

Select Code to Download


  1. or download this
    my ($from, $to) = (shift, shift);
    @ARGV == 1 or die "Usage: $0 from_string to_string filename\n";
    ...
        s/\Q$from/$to/g;
        print;
    }