Thread RegEx: $1,$2,$3,...,$n in ein Array (9 answers)
Opened by Matze at 2006-05-01 17:56

betterworld
 2006-05-01 19:30
#65433 #65433
User since
2003-08-21
2614 Artikel
ModeratorIn

user image
Auch wenn das Problem schon geloest ist, moechte ich noch die eigentliche Frage beantworten:
Code: (dl )
1
2
3
4
5
6
7
8
use Data::Dumper;
my $var = "hallo";
$var =~ /(.)(..)(.)/ or die;
my @array;
for (1..$#+) {
push @array, substr($var, $-[$_], $+[$_] - $-[$_]);
}
print Dumper \@array;

View full thread RegEx: $1,$2,$3,...,$n in ein Array