Re: Filtering HTML

2002-05-02 Thread Felix Geerinckx
on Wed, 01 May 2002 14:28:50 GMT, [EMAIL PROTECTED] (Frank Wiles) wrote: > On Wed, 1 May 2002 22:07:38 +1000 "Arran Ubels" > <[EMAIL PROTECTED]> wrote: > >> How would i filter HTML from a String? > >my $string =~ s/<.*?>//g; Here's what perldoc -q html How do I remove H

Re: Filtering HTML

2002-05-01 Thread Frank Wiles
On Wed, 1 May 2002 22:07:38 +1000 "Arran Ubels" <[EMAIL PROTECTED]> wrote: > How would i filter HTML from a String? my $string =~ s/<.*?>//g; This removes everything between <>'s which should catch all HTML, and you don't have to worry about <>'s as data because they would need to

Filtering HTML

2002-05-01 Thread Arran Ubels
How would i filter HTML from a String?