sprintf or pack

S

sonet

How to use pack or sprintf do the same thing?

$b='A';
$a=ord($b);
print int($a/16) . ($a % 16) ;
 
M

Mirco Wahab

Paul said:
printf "%x", $a;

other TIMTOWTDIs

print unpack "H*", 'A';

or (non portable)

print unpack("H", 'A')
.unpack("h", 'A');

or

print +(ord('A')>>4)
.(ord('A')&15);

etc.

M.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top