Help for this page

Select Code to Download


  1. or download this
    my $success;
    while(/PATTERN/g) {
    ...
            last;
        }
    }
    
  2. or download this
    $_ = 'bar    bar         obar     foooooobar   bar';
    my($success, $start) = 0;
    ...
        }
    }
    print "$success: $start\n";