There are ways to do this using a regular expression. For
example:
if ($img =~ m#.*/(.*)#) {
$name = $1;
}
else {
# didn't match!
}
This works because the first .* is greedy and matches up
until the last "/" in $img; then we keep the rest.
However, solutions using substr and index (or rindex)
are often faster than regexps in cases like this, and this
is no exception, at least with the regexp above:
use Benchmark;
timethese(1000000, {
'regexp' => sub { my($file) = $img =~ m#.*/(.*)# },
'substr' => sub { my $file = substr $img, rindex($img, '/') + 1 }
});
gives
Benchmark: timing 1000000 iterations of regexp, substr...
regexp: 11 secs (11.18 usr 0.00 sys = 11.18 cpu)
substr: 4 secs ( 5.67 usr 0.00 sys = 5.67 cpu)
In reply to Re: Rexgrep
by btrott
in thread Rexgrep
by toadi
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.