in reply to Data-Parsing: parsing a huge number of files

How about if you reply to your own node here, to give us a fresh start on the problem. Please try to structure your next post like this:
Here is a brief sample of my input data:
(brief sample of data, with at least one example of each thing to be c +aptured)
Here is a brief sample of what I want my perl script to produce as output:
(brief sample, with "# comments" if needed, of what you want to create +)
Here is the perl code I've tried so far:
#!/usr/bin/perl use strict; use warnings; # whatever you've got in terms of perl code...

Organize your thoughts so that you can pose a clear question.

Replies are listed 'Best First'.
Re2: Data-Parsing: parsing a huge number of files
by Perlbeginner1 (Scribe) on Sep 23, 2010 at 10:50 UTC
    ve got 25 Tsd files - all are stored in one folder.
    each site contains Adresses (see below) Each data-set has got a unique ID-Number!
    First task is to take all the 25 thousand html-files and to strip out - (parse) the therein contained adress-sets. This is a Perl-task! Sure thing!

    see a dataset:

    Name: Mister Miller
    Adresse:
    Telefon:
    Fax:
    ID-Nummer: 2210202
    Mail-Adress: Mister_Miller@hotmail.com
    Website: short url: http://www.TheWEBsite.org/ID-Number - here 2210202


    The second task can be done with Perl:

    In the last line of Adress-set there is an URL - with a short-way that is build up with two pieces

    http://www.TheWEBsite.org/ID-Number - here 2210202
    in order to rebuild the original URL i have to set the url together and call it.... short url:
    http://www.TheWEBsite.org./ID-Number

    how should i do this second task!?

    look forward to hear from you