Help for this page

Select Code to Download


  1. or download this
      $$text_ref =~ s|(?<="http://)(.*?)(?=["/])|$fixers{$1} ? $fixers{$1}
    + : $1|ge ;
    
  2. or download this
      my $what = join('|', map(quotemeta, keys %fixers)) ;
      $$text_ref =~ s!(?<="http://)($what)(?=["/])!$fixers{$1}!ge ;