use Benchmark; my $tests = [qw(these are a few test to try andaverylongteststring acoupleoftimesover xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx +xxxxxxxxxxxxxxxxxxxxxxxxxx zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz +zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzz)]; timethese (100000, { NoOpLoop => sub { for my $test (@$tests) { # NO Op Loop } }, regex1 => sub { for my $test (@$tests) { $test=~s/^(.*)(.)$/\L$1\U$2/; } }, substr => sub { for my $test (@$tests) { $test= lc(substr($test, 0, length($test)-1)) . uc(substr($test, -1, 1)); } }, reverse=> sub { for my $test (@$tests) { $test=reverse ucfirst lc reverse $test; } } });
and the winner is :-
Benchmark: timing 100000 iterations of NoOpLoop, regex1, reverse, subs +tr... NoOpLoop: 2 wallclock secs ( 1.86 usr + 0.00 sys = 1.86 CPU) @ 53763.44/s (n=100000) regex1: 82 wallclock secs (30.31 usr + 0.01 sys = 30.32 CPU) @ 3298.15/s (n=100000) reverse: 8 wallclock secs ( 7.40 usr + 0.00 sys = 7.40 CPU) @ 13513.51/s (n=100000) substr: 8 wallclock secs ( 8.51 usr + 0.01 sys = 8.52 CPU) @ 11737.09/s (n=100000)
Interesting: double reverse seamed the best but as always test on real data!!

Hope it helps
UnderMine


In reply to Re: Re: Re: Implement uclast with a regex by UnderMine
in thread Implement uclast with a regex by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.