RE: Packing a Hexadecimal String

2004-07-11 Thread Youssef Eldakar
for pointing me to the source of the problem. Youssef Eldakar Bibliotheca Alexandrina -Original Message- From: Randy W. Sims [mailto:[EMAIL PROTECTED] Sent: Sun 7/11/2004 9:55 PM To: Youssef Eldakar Cc: [EMAIL PROTECTED] Subject: Re

RE: Packing a Hexadecimal String

2004-07-11 Thread Youssef Eldakar
I am running Perl 5.8.0 on Linux. -Original Message- From: Randy W. Sims [mailto:[EMAIL PROTECTED] Sent: Sun 7/11/2004 11:01 AM To: Youssef Eldakar Cc: [EMAIL PROTECTED] Subject: Re: Packing a Hexadecimal String

Packing a Hexadecimal String

2004-07-11 Thread Youssef Eldakar
pack("H*","207F10")'|od -Ax -tx1 00 20 7f 10 03 However, replacing the "7F" with "80" in the pack function, results in the appearance of the "C2" in the dump: $ perl -e 'print pack("H*","208010")'