Help for this page

Select Code to Download


  1. or download this
    /CapHeight 667
    >>
    ...
    <<
    /Length 422
    >>
    
  2. or download this
    my $result = $pdf=~qr/^1 0 obj/m;
    say "Finding first item at start position  [$-[0]]" if $result;
    ...
     $result = $pdf=~qr/^4 0 obj/m;
    say "Finding fourth item at start position [$-[0]]" if $result;
    say "Finding fourth item at start position [$+[0]]\n" if $result;
    
  3. or download this
    Finding first item at start position  [26]
    Finding first item at start position  [33]
    ...
    
    Finding fourth item at start position [2035]
    Finding fourth item at start position [2042]