Help for this page

Select Code to Download


  1. or download this
    # Create a hash of codes for substitution
    my %directSubs = (
    ...
    while(($a,$b) = each %directSubs){
       $line =~ s/$a/$b/gi;
    }