in reply to Re: Better Algorithm to Encode This?
in thread Better Algorithm to Encode This?
## No Period in the char class! $STRING =~ s/([^a-zA-Z0-9_-])/lc sprintf(".%02x", ord($1))/eg; ## my encode $S =~ s/([^\w-])/sprintf".%02x",ord$1/eg; ## my decode $S =~ s/\.(..)/chr hex $1/eg;
--
$you = new YOU;
honk() if $you->love(perl)
|
|---|