Only using one capturing paren will improve the performance of your regex as it will not be forced to do as much backreferencing. In playing around with this, I managed to optimize the
split by breaking it into a minimal number of segments. In all cases, with my example,
split significantly outperformed the regex.
#!/usr/bin/perl -w
use strict;
use Benchmark;
use vars qw($myvar $result $a $b $c $d);
$myvar = "one,two,three,four";
timethese(1000000, {
Regex => '$a=$1, $b=$2, $c=$3, $d=$4 if $myvar =~ /^[^,]+,([^,]
++),[^,]+,[^,]+$/',
Split1 => '$result = (split /,/, $myvar)[1]',
Split2 => '$result = (split /,/, $myvar, 4)[1]',
Split3 => '$result = (split /,/, $myvar, 3)[1]'
});
Benchmark: timing 1000000 iterations of Regex, Split1, Split2, Split3.
+..
Regex: 26 wallclock secs (25.75 usr + 0.00 sys = 25.75 CPU)
Split1: 16 wallclock secs (16.31 usr + 0.00 sys = 16.31 CPU)
Split2: 16 wallclock secs (16.15 usr + 0.00 sys = 16.15 CPU)
Split3: 13 wallclock secs (12.74 usr + 0.00 sys = 12.74 CPU)
Note the whopping improvement in performance of Split3. In my benchmark, it's approximately twice as fast as the regex.
Cheers,
Ovid
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.