- or download this
/CapHeight 667
>>
...
<<
/Length 422
>>
- 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;
- 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]