... I have no idea why it does that. ... splitting the two bytes into individual bytes. Is this behavior of unpack documented?

The  h (un)pack template specifier is (and always has been, as far as I can recall) documented to unpack:
    h  A hex string (low nybble first).
The low nybble- versus high nybble-first ordering is the critical difference between, respectively, the 'h' and 'H' specifiers.

This means that a string containing an ASCII '1' character (a byte with the hex value 0x31 — this is also a UTF8 representation of '1') will unpack as '13' with h and you have your false positive. (It also means that  h unpacks an actual 0x13 character as '31' and you have a false negative!)

I wouldn't do it this way, but if you absolutely have to use a regex to search a hex-unpacked string for the hex representation of the character 0x13, I would first make sure the nybble order of the unpack template specifier I'm using is consistent with the unpacked character pair I'm looking for (e.g., 'H' with '13') and then make sure the regex only matches on even character offset boundaries:

c:\@Work\Perl>perl -wMstrict -le "use Data::Dump qw(pp); ;; print 'perl version: ', $]; ;; for my $s ('a1', qq{\x{1f}s}, qq{\x13}, qq{ab\x{13}cd}) { print q{'H*' found 0x13 in }, pp($s) if unpack('H*', $s) =~ m{ \A (?: ..)* 13 }xms; } " perl version: 5.008009 'H*' found 0x13 in "\23" 'H*' found 0x13 in "ab\23cd"
(Runs the same on ActiveState 5.8.9 and Strawberry 5.14.4.1.)

Personally, I've always found the behavior of the H and h (un)pack specifiers counterintuitive and tricksey. Whenever I use them, I always have go to the pack and perlpacktut documentation and tutorial and stare at the info therein for a while before I can get it right.


Give a man a fish:  <%-{-{-{-<


In reply to Re^7: How to find Unicode: 0x13 in File by AnomalousMonk
in thread How to find Unicode: 0x13 in File by dirtdog

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.