in reply to List::MoreUtils before, after and ... between?
Your specific example is more simply accomplished with grep:
@foo = grep /MyApp/, qw<eval DBIC::3 DBIC::2 DBIC::1 MyApp::3 MyApp::2 + MyApp::1 Dancer::3 Dancer::2 Dancer::1>;; print for @foo;; MyApp::3 MyApp::2 MyApp::1
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: List::MoreUtils before, after and ... between?
by rovf (Priest) on Feb 21, 2012 at 15:16 UTC | |
by BrowserUk (Patriarch) on Feb 21, 2012 at 15:18 UTC |