Help for this page

Select Code to Download


  1. or download this
    $window_size--;
    my( $windowed_text )= $text_body =~
        /^\s*(?:\S+\s+){$window_start}(\S+(?:\s+\S+){0,$window_size})/;
    
  2. or download this
    $_ = q/01234/;
    /^..{0}/;    # matches '0'
    /^..{0,0}/;  # matches '0'
    /^..{0,-1}/; # doesn't match at all