Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Re: Matching date range with pure regex

by MCS (Monk)
on Feb 17, 2004 at 21:55 UTC ( [id://329757]=note: print w/replies, xml ) Need Help??


in reply to Re: Matching date range with pure regex
in thread Matching date range with pure regex

Just for kicks, I removed the print statement (as suggested by grinder) and threw in a ++$foo instead. Got the following: (Abigail's is still last but has the most ammount of votes still...)

Benchmark: timing 10000 iterations of abigail, grinder, posixguy, roge +r... abigail: 55 wallclock secs (51.42 usr + 0.12 sys = 51.54 CPU) @ 19 +4.02/s (n=10000) grinder: 1 wallclock secs ( 0.60 usr + 0.00 sys = 0.60 CPU) @ 16 +666.67/s (n=10000) posixguy: 1 wallclock secs ( 0.96 usr + 0.00 sys = 0.96 CPU) @ 10 +416.67/s (n=10000) roger: 1 wallclock secs ( 0.61 usr + 0.00 sys = 0.61 CPU) @ 16 +393.44/s (n=10000)

Updated code is in a readmore block (I removed the prints and added a $)

#!/usr/bin/perl -w use strict; use Benchmark; my @data = qw{1949 1950 1951 1999 2000 2001 2010 2049 2050 2051 2102 2 +2102 19534 19080 20010}; sub grinder() { my $foo = 0; foreach( @data ) { chomp; ++$foo if (/^(19[5-9]\d|20([0-4]\d|50))$/); } return $foo; } sub roger() { my $foo = 0; foreach (@data) { chomp; ++$foo if (/^(?:19|20)(?:(?:(?<=19)[5-9]|(?<=20)[0-4]) +[0-9]|50)$/x); } return $foo; } sub posixguy() { my $foo = 0; foreach (@data) { chomp; ++$foo if (/^(19[5-9]\d)|(20([0-4]\d)|50)$/); } return $foo; } sub abigail() { my $foo = 0; foreach (@data) { chomp; local $" = "|"; ++$foo if (/^(?:@{[1950 .. 2050]})$/); } return $foo; } timethese(10000, {grinder=>'grinder()', roger=>'roger()', posixguy=>'p +osixguy()', abigail=>'abigail()'});

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://329757]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (5)
As of 2024-04-18 05:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found