http://www.perlmonks.org?node_id=1002495


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

I want to change this whole word to //eof

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

and thank you for your reply ))

Enough codes make shapes. (Hamidjon)

Replies are listed 'Best First'.
Re^3: trouble with regular expressions
by moritz (Cardinal) on Nov 06, 2012 at 15:00 UTC
    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};
Re^3: trouble with regular expressions
by programmer.perl (Beadle) on Nov 06, 2012 at 14:54 UTC

    sorry, I made a gram. mistake: I want to change this whole string to //eof

    Enough codes make shapes. (Hamidjon)