> the transliteration (tr) code took: 0 wallclock secs ( 0.11 usr +  0.00
sys =  0.11 CPU)
> the lowercase (lc) code took: 1 wallclock secs ( 0.98 usr +  0.00 sys =
0.98 CPU)
Sorry, but I won't trust any benchmark which doesn't run for at least 30
seconds (for each part)

> $foo =~ tr/[A-Z]/[a-z]/;
why are you converting the brackets to brackets...?

> $bar =~ lc($bar) ;
Why not just the following?
        $bar = lc $bar;

Jörg

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/activeperl

Reply via email to