1 2 3
perl -e ' my $x = "The weather is\nfine today\n"; if($x =~ /{Hier kommt is oder today hin}\Z/m){print "match\n"}'
2013-02-15T11:18:54 Student87Hab noch was vergessen.
Frage 2:
perl -e 'if(10/4 == 2.5){print "true\n"}'
true
Quoteperl -e 'if(10/4 =~ /.5/){print "true\n"}'
Illegal division by zero at -e line 1.
Wieso illegal division ?
QuoteFrage 3:
$ -> True at end of string (or before any newline, maybe)
\z -> True at end of string only
\Z -> True at end of string or before optional newline
\z verstehe ich, damit kann ich z.B. nicht das today matchen, da das Ende des String eine newline ist. Aber was ist der Unterschied zwischen \Z und $ ?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
10%2 == 0
11%2 == 1
12%2 == 0
13%2 == 1
10%3 == 1
11%3 == 2
12%3 == 0
13%3 == 1
10%4 == 2
11%4 == 3
12%4 == 0
13%4 == 1