in reply to Re: Removing HTML tags from a string
in thread Removing HTML tags from a sting
wouldn't just a simple
foreach (@line){ $_ =~ s/\</\<\;/g; $_ =~ s/\>/\>\;/g; }
work just as well?
John J Reiser
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re(3): Removing HTML tags from a string
by chip (Curate) on May 21, 2002 at 01:38 UTC |