Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Stripping HTML tags efficiently

by Crian (Curate)
on Dec 10, 2004 at 11:18 UTC ( [id://413806]=note: print w/replies, xml ) Need Help??


in reply to Stripping HTML tags efficiently

The (or one) problem is, that you have a variable in your regular expression, what is not neccessary in this case. This slows things always down.

Whats about using qr// to compile the expression or just putting the pattern into the RE directly?

while ($target_data=~m/(<[^>]{1,300}>)/gi)

(You don't have to escape < and > btw.)

Replies are listed 'Best First'.
Re^2: Stripping HTML tags efficiently
by agynr (Acolyte) on Dec 10, 2004 at 12:08 UTC
    You are also right.. Thanx for that

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-25 09:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found