Leser: 1
|< 1 2 >| | 20 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/local/bin/perl -w
use strict;
my $string1 = "Hallo Welt!";
my $string2 = "Hallo";
my @array1 = qw (1 2 3 4 5);
my @array2 = qw (2);
my $array_feld = "1";
my $result;
$result = ($array1[$array_feld] =~ m/^$array2[$array_feld]/);
if ($result)
{
print ("\n\nIt works!!\n\n");
print ("The Result is: $result\n\n");
}
QuoteUse of uninitialized value in concatenation (.) or string at test.pl line 12.
It works!!
The Result is: 1
my $array_feld = 0; # "1"; ps: die anführungszeichen sind hier unnötig, da es ja eine zahl ist!
|< 1 2 >| | 20 Einträge, 2 Seiten |