Help for this page

Select Code to Download


  1. or download this
    $string =~ s/description/summary/gi ;
    $string =~ tr/=/:/ ;
    
  2. or download this
    %subs = (
      description => 'Summary',
    ...
    foreach (keys %subs) {
      $string =~ s/\Q$_/$subs{$_}/gi;
    }