4 Einträge, 1 Seite |
sub {(index($_[0]->as_text, '4') == -1) && ($_[0]->as_text =~ /met/i)
sub {(index($_[0]->as_text, '4') != -1) && ($_[0]->as_text =~ /met/i)
1 2 3
if( index( $_[0]->as_text,'4') != -1 && index( $_[0]->as_text, 'met' ) != -1 ){ print "String enthält '4' und 'met'"; }
1
2
If the substring is not found, "index" returns one
less than the base, ordinarily "-1".
4 Einträge, 1 Seite |