in reply to Re: Re: print the whole line
in thread print the whole line

That's because you have the whole page stored as a single line. In your original post you showed an array. Try

my @content = split /\n/, get($url); /abc/ and print for @content;

But note: What will be considered a "line" in html source bears no realationship to the "lines" that appear on the screen in your browser.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
Timing (and a little luck) are everything!

Replies are listed 'Best First'.
Re: Re: Re: Re: print the whole line
by Anonymous Monk on Jan 21, 2004 at 15:22 UTC
    Thanks!!! This was a great learning experience.