Looks like += 0 is the winner, sprintf is the loser and regex comes somewhere in the middle.
#! /usr/bin/perl -w use strict; use Benchmark; my $start = shift; timethese shift, { Add => sub { my $num = $start; $num += 0 }, Regex => sub { my $num = $start; $num =~ s/^0+// }, Sprintf => sub { my $num = $start; $num = sprintf '%d', $num }, };
% perl zero 0000000000000000000000123 2000000
Benchmark: timing 2000000 iterations of Add, Regex, Sprintf...
       Add: 10 wallclock secs ( 9.30 usr +  0.00 sys =  9.30 CPU)
     Regex: 10 wallclock secs (10.30 usr +  0.00 sys = 10.30 CPU)
   Sprintf: 15 wallclock secs (14.39 usr +  0.02 sys = 14.41 CPU)
% perl zero 0123 2000000
Benchmark: timing 2000000 iterations of Add, Regex, Sprintf...
       Add:  8 wallclock secs ( 8.77 usr +  0.00 sys =  8.77 CPU)
     Regex: 11 wallclock secs ( 9.88 usr +  0.00 sys =  9.88 CPU)
   Sprintf: 13 wallclock secs (11.95 usr +  0.00 sys = 11.95 CPU)


--
g r i n d e r

In reply to Benchmarking Removing leading zeros by grinder
in thread Removing leading zeros by idunno

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.