Help for this page

Select Code to Download


  1. or download this
    my $compd_pattern = eval "qr($pattern)" or die $@;
    
  2. or download this
    my $compd_pattern = qr($pattern);
    
  3. or download this
    my $pat  = ...;
    my $repl = ...;
    ...
    } else {
        s/$re/$repl/;
    }