Gossamer Forum
Home : General : Perl Programming :

Re: [Andy] grep and $_ question

Quote Reply
Re: [Andy] grep and $_ question In reply to
is
Code:
if (grep {$_ eq $name} @players) {
the same as


Code:
if (grep {$name eq $_ } @players) {
Subject Author Views Date
Thread grep and $_ question delicia 3709 Aug 10, 2022, 4:42 PM
Thread Re: [delicia] grep and $_ question
Andy 3644 Aug 11, 2022, 11:49 PM
Thread Re: [Andy] grep and $_ question
delicia 3641 Aug 12, 2022, 6:51 AM
Thread Re: [delicia] grep and $_ question
Andy 3635 Aug 12, 2022, 6:57 AM
Thread Re: [Andy] grep and $_ question
delicia 3632 Aug 12, 2022, 9:42 AM
Post Re: [delicia] grep and $_ question
Andy 3586 Aug 14, 2022, 11:09 PM