|< 1 2 >| | 14 Einträge, 2 Seiten |
QuoteThe numbered variables ($1, $2, $3, etc.) and the related punctuation set ($+, $&, $`, and $') are all dynamically scoped until the end of the enclosing block or until the next successful match, whichever comes first. See "Compound Statements" in perlsyn.)
die "Nix gefunden!" if not defined $_systemvariable_die_ich_nicht_kenne;
1
2
3
4
5
$string = 'Hallo wie gehts ?';
if ($string=~/^(\w) /i) {
$match = $1;
print $match;
}
my @words = $string =~ /\b(\w+)\b/;
$string =~ /(zeichenkette) \1/;
1
2
3
4
my $string = "das das ist mein mein teststring";
$string =~ s/\b(\w+)\b \1/$1/g;
print $string;
1
2
3
4
5
6
7
8
9
$ perl -wle'
$_ = "text";
m/(t)/;
print "\$1: ($1)";
m/(T)/;
print "\$1: ($1)";'
$1: (t)
$1: (t)
$
QuoteAußerdem gelten sie natürlich nur in dem sie umgebenden Block.
|< 1 2 >| | 14 Einträge, 2 Seiten |