Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
      $xml =~ s/(\d{11})/md5_hex($1)/eg; 
      print $xml;
    }
    
  2. or download this
      $xml =~ s/(\<tag\>)(\d{11})(\<\/tag\>)/$1md5_hex($2)$3/eg;
    
  3. or download this
      $xml =~ s/(\<tag\>)(\d{11})(\<\/tag\>)/transformed($1,$2,$3)/eg; 
    
    ...
      my ($prefix,$number,$suffix) = @_
      return $prefix . md5_sum($number) . $suffix;  
    }