Help for this page

Select Code to Download


  1. or download this
    $post_message =~ s/\Q[[$1]]/[[$article_id]]/sig;
    
  2. or download this
    while ($input =~ /\G(.*?)\[\[([^]]+)\]\]/sg) {
       my $link = $2;
       $output .= $1;
       $output .= process($link);
    }
    
  3. or download this
    $post_message =~ s{\[\[([^]]+)\]\]}{
       process($1)
    }esg;