Thread Matching mit Klammern geht nicht (8 answers)
Opened by Leonie at 2017-12-11 19:53

Muffi
 2017-12-13 15:49
#187724 #187724
User since
2012-07-18
1465 Artikel
BenutzerIn
[default_avatar]
Bisschen OT, aber ganz interessant:

Code (perl): (dl )
1
2
3
my $s = '\s';
my $test = 'Hallo\s';
say $test =~ /$s/ ? 'JA' : 'NEIN';


NEIN

Code (perl): (dl )
1
2
3
my $s = '\s';
my $test = 'Hallo\s';
say $test =~ /\Q$s\E/ ? 'JA' : 'NEIN';


JA

Und jetzt:

Code (perl): (dl )
1
2
3
my $s = '\E\s\Q';
my $test = 'Hal lo';
say $test =~ /\Q$s\E/ ? 'JA' : 'NEIN';


Na?
1 + 1 = 10

View full thread Matching mit Klammern geht nicht