Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: How to remove HTML tags from text

by nejcPirc (Acolyte)
on Feb 04, 2005 at 11:54 UTC ( [id://428022]=note: print w/replies, xml ) Need Help??


in reply to Re: How to remove HTML tags from text
in thread How to remove HTML tags from text

Something like this?
$data=~s/<.*?>//g; $data=~s/&lt.*?&gt//g;

Replies are listed 'Best First'.
Re^3: How to remove HTML tags from text
by pelagic (Priest) on Feb 04, 2005 at 12:17 UTC
    Text::Balanced does it properly even if there is some funny stuff between the brackets. Look into the documentation for more info. But of course you can also use some regex to remove the strings in a simple way.

    pelagic
Re^3: How to remove HTML tags from text
by cLive ;-) (Prior) on Feb 05, 2005 at 00:00 UTC
    nope.
    $data = <<_END_; <script language="JavaScript"> alert("Boo!") </script > _END_
    A /s modifier would help a little, but doesn't solve everything. Eg, what about this tag?
    $data = qq{ <img src="hello.jpg" alt="x>y" width="60" height="60" /> } +;

    Lesson: never treat HTML parsing as a "back of an envelope" exercise :)

    cLive ;-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://428022]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 03:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found