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

Re: List::MoreUtils before, after and ... between?

by tobyink (Canon)
on Feb 21, 2012 at 18:11 UTC ( [id://955365]=note: print w/replies, xml ) Need Help??


in reply to List::MoreUtils before, after and ... between?

No good for one-liners, but this looks pretty sweet:

use 5.010; use strict; use List::MoreUtils qw/first_index last_index/; sub narrow { my ($from, $to) = map { $_->(@_) } @{(pop)}; return @_[$from .. $to]; } sub from (&$) { [ @_[0..1] ] } sub to (&) { $_[0] } my @list = qw/eval DBIC::1 DBIC::2 My::1 My::2 My::3 Dancer::1 Dancer: +:2 Dancer::3 Dancer::4/; say foreach narrow @list, from { 1 + last_index { /^DBIC/ } @_ } to { (-1) + first_index { /^Dancer/ } @_ };

Obviously you'd want to factor narrow, from and to out into a separate module rather than defining them inline.

And given that from and to are quite generic names, perhaps something like start_at and finish_at might be better in practice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-26 03:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found