![]() |
|
Think about Loose Coupling | |
PerlMonks |
Re: I was expecting 4 elements in the array, but it only has 3by Paladin (Vicar) |
on Nov 28, 2018 at 17:08 UTC ( #1226461=note: print w/replies, xml ) | Need Help?? |
The difference is context, scalar vs. list. The m// operator returns the empty list on no match in list context and the list (1) in list context when there are no () in the regex. So after evaluating all the matches in @list you are left with ((1), (), (1), (1)), which evaluates to (1,1,1).
In Section
Seekers of Perl Wisdom
|
|