> hi , 
> I have a file cointaing 1024  hex  numbers .
> I want to convert them to Bin.
> Please help

try something like this:

$hex = 0xff;
$bin = unpack("B32", pack("N", hex $hex));


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to