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 be &lt; and &gt; if the HTML is valid. 

   Hope this helps. 

  ---------------------------------
   Frank Wiles <[EMAIL PROTECTED]> 
   Revolution Systems, LLC. 
  ---------------------------------





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to