Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^7: How to find Unicode: 0x13 in File

by AnomalousMonk (Archbishop)
on Nov 19, 2016 at 17:27 UTC ( [id://1176160]=note: print w/replies, xml ) Need Help??


in reply to Re^6: How to find Unicode: 0x13 in File
in thread How to find Unicode: 0x13 in File

... 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:  <%-{-{-{-<

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1176160]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-03-28 21:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found