Thread If Abfrage mit ähnlichkeitswert (8 answers)
Opened by Gast at 2008-03-18 13:12

pq
 2008-03-18 14:03
#107191 #107191
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
index ist nicht "meistens schneller". es kommt auf die aufgabenstellung und den input an.
bei folgendem code ist index langsamer:
Code: (dl )
1
2
"test" =~ m/^foo/
index("test", "foo")

da index immer bis zum ende des strings läuft.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread If Abfrage mit ähnlichkeitswert