hello dear keath
many many thanks for the reply - great to hear from you. i am happy.
thx for the hint - you re right
Quote:
| Originally Posted by keath It's really just one loop, isn't it?
pseudo code
Code:
foreach my $url (@urls) {
my $response = $ua->post($url, \%data);
my $result = parse_response($response);
}
|
great - well that looks right the solution that is needed.
Well - and with that i can arrange the Mechanize-Part at all.
note:
the Goal: i have approximatley 10000 pages to parse
they are organized like that:
http://Www.address/5307.html
http://Www.address/5308.html
http://Www.address/5309.html
you think that
i arrange the different urls herein
Code:
foreach my $url (@urls) {
my $response = $ua->post($url, \%data);
my $result = parse_response($response);
}
[/QUOTE]
note: the above infos in the initial posting refer to the task to parse the following
results: see the page: http://katholisch.at/content/site/pfarrfinder/index.html
Hmm - i guess that the algorithm would be basically need only one loop - your one!!! Many thanks Keath
Well - and now i try to combine all with Mechanize and try to get some output..out of it.
Guess that i try to organize all the output in a way that i get CSV-DATA...