Help for this page

Select Code to Download


  1. or download this
    # $cache{$regex} ||= qr/$regex/;
    
    $string =~ s/$cache{$regex}/XXX$1/
    
  2. or download this
    $something_regex = qr/$regex/;
    
    $string =~ s/$something_regex/XXX$1/