2007/9/12, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > If this is how I get external content of the file, how do I loop > through every line of the $content? > > #!/usr/bin/perl > use LWP::Simple; > $url = 'http://site.com/page.html"; > $content = get $url; > print $content;
my @c=get "http://www.google.com/"; print for @c; This also print line by line. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/