Help for this page

Select Code to Download


  1. or download this
        my ($find, $replace) = @_;
        my $content =~ s{$find}{$replace}s;
    
  2. or download this
      $content =~ s/(^.*SignDataType="osv">).*((?=<\/FormSignData>).*$)/$1
    +XXX$2/s;
    
  3. or download this
       my $find = "(^.*SignDataType=\"osv\">).*((?=<\\/FormSignData>).*\$)
    +";
       my $replace = "\$1xxx\$2";
       patch($find, $replace);
    
  4. or download this
    $1xxx$2