Thread Datei splitten in mehrere Dateien (11 answers)
Opened by dave at 2011-11-18 14:11

GwenDragon
 2011-11-18 17:18
#154308 #154308
User since
2005-01-17
14787 Artikel
Admin1
[Homepage]
user image
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
if (exists $lkzs{CountryCode}){
   $out = $lkzs{CountryCode}; 
   print $out $satz;
} else {
   $land = CountryCode;
   $datei = $verzeichnis.$land.".txt";
   $out = CountryCode;
   open   (my $fh,">:raw:utf8",$datei);
   $lkzs{CountryCode} = $fh;
   print $fh $header;
   print $fh $satz;
}

Ich weiß nicht, was du in Zeile 7 mit $out einlesen willst. Das kannst nur du wissen.

View full thread Datei splitten in mehrere Dateien