Just on a side note, would it not be better to use
s/\s//g; or
tr/\s//;.
I just did a benchmark on the two and the regex is approx 3 times quicker than the
$_ = join ' ', split; This is the benchmarik that I ran.
use Benchmark;
my $junk = 'The quick brown fox Jumped over the lazy dog';
timethese(5000000,
{
'split' => '$junk = join \' \',split $junk;',
'regex1' => '$junk =~ tr/\s//;',
'regex2' => '$junk =~ s/\s//g;',
});
and the results are
Benchmark: timing 5000000 iterations of regex1, regex2, split...
regex1: 3 wallclock secs ( 4.38 usr + 0.00 sys = 4.38 CPU) @ 11
+42334.93/s (n=5000000)
regex2: 3 wallclock secs ( 3.50 usr + 0.00 sys = 3.50 CPU) @ 14
+26940.64/s (n=5000000)
split: 15 wallclock secs (15.07 usr + 0.00 sys = 15.07 CPU) @ 33
+1762.99/s (n=5000000)
BatGnat
In reply to Re: Craftier
by BatGnat
in thread Craftier
by snax
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.