Help for this page

Select Code to Download


  1. or download this
        $search = qr/pattern/;
    
  2. or download this
        s/$search/replace/g;
    
  3. or download this
    my $rep = sub { $_[0] =~ s/a/b/g };
    
    ...
    $rep->($string);
    print "$string\n";