in reply to Re: Is there a more functional regex syntax?
in thread Is there a more functional regex syntax?

Nice trick using the -1 index like that, I'll have to remember that...

Regarding the original question though, I was hoping for a solution that keeps the regexes, because even if replacing them with split is possible in this case, that won't always be feasible if dealing with more complex regexes.

  • Comment on Re^2: Is there a more functional regex syntax?

Replies are listed 'Best First'.
Re^3: Is there a more functional regex syntax?
by tobyink (Canon) on Sep 18, 2012 at 16:57 UTC

    Some regexes will work inside those parentheses.

    $totals[$_] += ($range =~ /(\d+)/g)[$_] for 0, -1;
    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'