in reply to Re: removing an element without index
in thread removing an element without index
You want to access an element from the array, therefore you need an index.
Not quite. Consider:
my @data = (1,2,3,4,5,6,7,8,9,10); my ($element) = grep {m/4/} @data; # Get the first element containing +the digit 4
|
|---|