Buckaroo Buddha has asked for the wisdom of the Perl Monks concerning the following question:
I'm trying to replace the HTML escape codes from the GET string.
as you may well know, special characters
get turned into their hexadecimal name
eg: , would become %2C
   % would become %25
etc...
i need to make sure i do it for every occurance of a percent sign
can anyone help me write the regex for that?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Regex to cange HTML %?? to char(0x??);
by bikeNomad (Priest) on Jun 19, 2001 at 21:52 UTC | |
|
Re: Regex to cange HTML %?? to char(0x??);
by myocom (Deacon) on Jun 19, 2001 at 21:59 UTC | |
|
Re: Regex to cange HTML %?? to char(0x??);
by dimmesdale (Friar) on Jun 19, 2001 at 21:54 UTC | |
by TGI (Parson) on Jun 19, 2001 at 23:56 UTC | |
by Abigail (Deacon) on Jun 20, 2001 at 02:31 UTC | |
|
Re: Regex to cange HTML %?? to char(0x??);
by TGI (Parson) on Jun 19, 2001 at 23:09 UTC | |
|
Re: Regex to cange HTML %?? to char(0x??);
by Anonymous Monk on Jun 20, 2001 at 00:18 UTC |