Thread Use of uninitialized value in concatenation (.) or (14 answers)
Opened by x-man at 2004-04-09 17:15

Ronnie
 2004-04-09 17:46
#2029 #2029
User since
2003-08-14
2022 Artikel
BenutzerIn
[default_avatar]
Hmm, bei mir kommt da keine Fehlermeldung:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use warnings;
use Data::Dumper;

my $test = "value|value||value";
my @array = split(/\|/, $test);
print $array[2];
print Dumper(\@array);

Poste vieleicht mal etwas mehr Code.

View full thread Use of uninitialized value in concatenation (.) or