On 1/4/07, Jm lists <[EMAIL PROTECTED]> wrote:
what's the encode format for "%BD%F1%C8%D5%C5%C5%D0%D0" ?Thank you.

It's another way for spammers to hide URLs, etc.

Try this:

use strict;
my $val = "%BD%F1%C8%D5%C5%C5%D0%D0";
print "Looking at $val ";
$val =~ s/%([0-9a-f][0-9a-f])/chr(hex($1))/ieg;
print "... Should be $val \n";

--
WC (Bill) Jones -- http://youve-reached-the.endoftheinternet.org/
http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x2A46CF06&fingerprint=on

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to