Help for this page

Select Code to Download


  1. or download this
    my $entity = join '|', keys %entitylist;
    $string =~ s/($entity)/$entitylist{$1}/g;
    
  2. or download this
    my %entitylist = ( a => 1, b => 2);
    my $string = 'abc';
    ...
    print $string, "\n";
    __END__
    12c