iflint has asked for the wisdom of the Perl Monks concerning the following question:
=============== code ================== sub escape { shift() if ref($_[0]); my $toencode = shift; return undef unless defined($toencode); $toencode=~s/([^a-zA-Z0-9_.-])/uc sprintf("%%%02x",ord($1))/eg +; return $toencode; } =============== error ================ Substitution loop at /<...>/dbc.pm line 248, <> line 60981.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: perl 5.6.1 bug?
by samtregar (Abbot) on Jun 10, 2004 at 18:04 UTC | |
|
Re: perl 5.6.1 bug?
by Anonymous Monk on Jun 10, 2004 at 19:17 UTC | |
|
Re: perl 5.6.1 bug?
by Sandy (Curate) on Jun 10, 2004 at 18:16 UTC |