in reply to Re: Regex with variables
in thread Regex with variables
If there are numerous lookups, I agree, but if it's just a couple of quick lookups, that's not necessarily true. To extract the string into a hash seems to take significantly longer than just a straight regex lookup:
#!/usr/bin/perl use warnings; use strict; use Benchmark qw(:all); cmpthese ( 5000000, { 'string' => 'string()', 'hash' => 'hash()', }); sub string { my $str = "1689 9679 2792 2514 5472 1520 9342 5544 1268 0165 1979 +7314 2101 7221 9539 3882 1812"; my $test = 2101; if ($str =~ $test){ # do stuff } } sub hash { my $str = "1689 9679 2792 2514 5472 1520 9342 5544 1268 0165 1979 +7314 2101 7221 9539 3882 1812"; my $test = 2101; my %hash; for (split /\s+/, $str){ $hash{$_}++; } if (exists $hash{$test}){ # do stuff } } __END__ Rate hash string hash 267237/s -- -92% string 3521127/s 1218% --
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Regex with variables
by 1nickt (Canon) on Jun 29, 2015 at 14:37 UTC | |
by stevieb (Canon) on Jun 29, 2015 at 15:21 UTC |