Hmmm .. you are hitting the "quantifier length limit" of your perl implementation (which should be 0xffff) (?).

(1) How long is your binary chunk at all (above message says "304507" - dooh!) and (2) what number is in the ... length="xxx" ... field? Really *that* large?


update:

How to read arbitary big binary chunks from within regular expressions ...

You could advance until you hit the data (after the closing of the start tag) and simply read the data that follow. This implies you have one ... ...<file>..</file> ... entry per string at this point.

... my $binary = pack 'F*', (3.141592) x 8001; # this will dump a 64K+ bi +nary chunk my $string = '...blah...<file fiop="foo" length="' . length($binary) +.'"/>' . $binary . '</file>...blah...'; my ($fiop, $length, $data); if( $string =~ m{<file \s+ fiop="([^"]+)" \s+ length="([^"]+)" />}gx +) { ($fiop, $length) = ($1, $2); # extract tag prop +erties as usual $data = substr $string, pos($string), $length # extract data by +direct string copy } print "$fiop, $length\n"; print join ',', unpack("F*", $data); (my $notags = $string) =~ s{<file.+</file>}{}; print "\n$notags\n"; ...

Regards

mwa


In reply to Re^5: extracting a substring from a string - multiple variables by mwah
in thread extracting a substring from a string - multiple variables by walinsky

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.