in reply to
Is 'for' the wrong choice here?
grep is better here:
if ( grep { /($author)/i } @admin_users ) {
print "$blah\n";
} else {
print "$uber_blah\n";
}
Update -- Should be matching on $author, not $admin_user (the value from the loop in question).
-----------------------------------------------------
Dr. Michael K. Neylon - mneylon-pm@masemware.com
||
"You've left the lens cap of your mind on again, Pinky" - The Brain
"I can see my house from here!"
It's not what you know, but knowing how to find it if you don't know that's important