Moin Moin!
Hallo,
ich gehe eine CSV-Datei mit 3 Spalten, welche durch ein Pipe-Symbol (|) getrennt sind durch.
chomp;
my @splitted = split(/|/, $_);
my $IP = $splitted[0];
my $longitude = $splitted[1];
my $latitude = $splitted[2];
>
> Bei einem anschließenden
>
> ~~~perl
> print XML " <coordinates>$longitude, $latitude, 0</coordinates>\n";
>
bekomme ich ab und zu die Warnung
Use of uninitialized value $longitude in concatenation (.) or string at google.pl line 21, <FILE> line 710.
$_ enthält kein |-Zeichen.
Alexander
--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so".
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so".