Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: String to hex

by Anonymous Monk
on Aug 09, 2012 at 13:58 UTC ( [id://986527]=note: print w/replies, xml ) Need Help??


in reply to Re: String to hex
in thread String to hex

It needs to produce 4 lines, not just one

Replies are listed 'Best First'.
Re^3: String to hex
by influx (Beadle) on Aug 09, 2012 at 14:46 UTC

    Eh. Really? OK, well, I would advise against this method, but I was determined to get it working using my original unpack version.. so here goes

    sub str_to_hex { my $str = shift; my @h; for my $s (split(/(....)/, unpack("H*", $str))) { if ($s ne '') { if (length($s) < 4) { $s = ("0" x (4 - int(length($s)))) . $s; } push @h, "0x" . $s; } } push @h, "0x0000" while @h < 4; return @h; } for (str_to_hex("COM7:")) { print $_ . "\n"; }

    This outputs
    0x434f
    0x4d37
    0x003a
    0x0000

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-25 06:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found