I want to parse a web page, and have this command in my program:
$res = $ua->request(HTTP::Request->new(GET => $url), sub {$p->parse($_[0])});
But I also want this web page on file, so the next line is:
$res = $ua->request(HTTP::Request->new(GET => $url), 'tvschedule.html');
Can I combine these two into one, so I do not need to GET the web page two times?
Ivan
- Re: Parse and save to file Ivan C Myrvold
- Re: Parse and save to file Randal L. Schwartz
- Re: Parse and save to file Sean M. Burke
- Re: Parse and save to file tallwine
