in reply to Re: Re: •Re: Find illegal ASCII characters
in thread Find illegal ASCII characters
$toencode =~ s{&}{&}gso; $toencode =~ s{<}{<}gso; $toencode =~ s{>}{>}gso; $toencode =~ s{"}{"}gso; ... $toencode =~ s{'}{'}gso; $toencode =~ s{\x8b}{‹}gso; $toencode =~ s{\x9b}{›}gso; ... $toencode =~ s{\012}{ }gso; $toencode =~ s{\015}{ }gso;
44696420796F7520732F2F2F65206F
7220756E7061636B3F202F6D736720
6D6521203A29202D2D204A75657264
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: •Re: Find illegal ASCII characters
by IlyaM (Parson) on Mar 09, 2002 at 01:06 UTC | |
by Juerd (Abbot) on Mar 09, 2002 at 01:48 UTC |