Help for this page

Select Code to Download


  1. or download this
    $value =~ s/$pattern/$replacement/$flags;
    
  2. or download this
    my $re = new Regexp($pattern);
    my $value = $re->substitute($value, replacement, $flags);