Re: Regular expression confusion...

2000-10-16 Thread Mark Lybrand
Instead of trying to come up with THE regex that covers all possible HTML situations, just check out the module HTML::Parser that makes stripping HTML tags mind-numbingly easy. Mark :) "Scott Phelps" [EMAIL PROTECTED] 10/16/00 08:28AM Am I the only person who considers regular expressions

Re: Regular expression confusion...

2000-10-16 Thread Philip Newton
Scott Phelps wrote: All I want to do is remove all the HTML from a string. FAQ: `perldoc -q "remove HTML"` Although I believe that HTML::Parser (not HTML::Parse) is the recommended parser these days. s/.*//g; wipes the whole thing because is included in the .* meta. But \n is not so it