Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Egads! A regex where substr would suffice! Shame, shame!

Update: OK, this was a good-natured jest but it seems at least a few people take issue with my above remark. So, anyway, here is some data to backup my comment. First of all, the poster asked specifically how to find the leftmost three characters of a string. His example showed a number (presumably a phone number) but the title of the post did not limit the problem domain to phone numbers. The poster asked for "the three leftmost characters" and the answer given was "the first three digits" which are not the same thing -- hence my good natured jest. This is a perfect problem for substr. Sure, the regex works fine, but it's overkill. It's like pulling out a chainsaw when all you need is a butter knife. substr is also more than twice as fast.

regex: 37.940104 seconds substr: 14.430599 seconds
The benchmark code that produced the above results is:
#!/usr/bin/perl use strict; use warnings; use Time::HiRes qw/ gettimeofday tv_interval /; #load up the numbers open my $fh, "< nums.out" or die; my @numbers = <$fh>; my $first_three; my ($start, $stop, $run_time); my $count = 100; $start = [gettimeofday()]; for (0..$count) { foreach my $phone (@numbers) { ($first_three) = $phone =~ /(\d{3})/; } } $stop = [gettimeofday()]; $run_time = tv_interval($start,$stop); print "regex: $run_time seconds\n"; $start = [gettimeofday()]; for (0..$count) { foreach my $phone (@numbers) { $first_three = substr $phone, 0, 3; } } $stop = [gettimeofday()]; $run_time = tv_interval($start,$stop); print "substr: $run_time seconds\n";
I didn't use Benchmark because it didn't like it when I tried to pre-load the numbers (it's a file of 10,000 strings that match the poster's example). I wanted to pre-load to avoid file I/O messing up the benchmark.

In reply to (RhetTbull) Re: Re: obtaining the three leftmost characters of a string by RhetTbull
in thread obtaining the three leftmost characters of a string by Baz

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-24 11:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found