Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^3: trouble with regular expressions

by moritz (Cardinal)
on Nov 06, 2012 at 15:00 UTC ( [id://1002499]=note: print w/replies, xml ) Need Help??


in reply to Re^2: trouble with regular expressions
in thread trouble with regular expressions

my old code matches the ;doc and gives result such as ssscument.write('<iframe ...shortened...</iframe>');

No, it does not:

use 5.010; use strict; use warnings; $_ = q[;document.write('<iframe src="any url" scrolling="auto" framebo +rder="no" align="center" height="15" width="15"></iframe>');]; s/(\;do.*)(\<\/iframe\>\'\)\;)/sss/; say __END__ sss

Anyway, it's easier if you use a different delimiter so that you don't have to escape the forward slashes:

s{(\;do.*)(</iframe>'\);)}{//eof};

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (7)
As of 2024-04-19 14:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found