Help for this page

Select Code to Download


  1. or download this
    while ( $string =~ /(start.+?end)/gis ) {
        my $data = $1;
        $data =~ s/^.*start/start/is;
        print $data, "\n\n";
    }
    
  2. or download this
    start
    start
    ...
    go
    two
    end
    
  3. or download this
    start
    go
    ...
    go
    two
    end