Help for this page

Select Code to Download


  1. or download this
                      |
                      v
    $test =~ s{\[\[(.+?)[^\]\]]}{
       print "FOO: $1\n";    
    }ge;
    
  2. or download this
    while ($test =~ s{\[\[(.+?)[^\]\]]}g) {
       print "FOO: $1\n";    
    }