On Apr 15, 2007, at 6:38 PM, Mário Gamito wrote:
I have this site that auto generates an index.html file every 15
minutes
(it's a blog aggregator).
I need that every time the file is generated, all the contents between
the lines
<h4 class="post-title"><a
href="http://domain.com/2006/08/bourne-shell.html">Bourne Shell</
a></h4>
and
<p><a href="http://domain.com/2006/08/bourne-shell.html">Sáb, 14 Abr
2007 12:31:07</a></p>
to be deleted (including these two ones).
I've tried several ways and googled but i can't do the trick.
Any help would be appreciated.
Have a look at the range operator in scalar context, it is documented
in perlop. The idea is
while (<>)
print unless /matches initial h4 line/ .. /matches ending P
line/;
}
-- fxn
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/