Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    while ($string =~ /(start.+?end)/gis) {
        print $1,"\n\n";
    }
    
  2. or download this
    start
    start
    ...
    go
    two
    end
    
  3. or download this
    start
    go
    ...
    go
    two
    end