Earlier quoted context omitted.
> I'd like to reply to your Unicode link with another link: > > http://stackoverflow.com/questions/6162484/why-does-modern-perl-avoid-utf-8-by-default/6163129#6163129 To which i have to say that both the Great Unicode Shootout as well as that answer are written by the same person. The point being: Yes, Perl's Unicode support is not perfect. But honestly? It's still the best you can get out there. > >Exceptions are bu…
Thanks for your answer. I'm very aware how to search an array in Perl. I really concentrated to much on searching in my text, whereas the critic should have been for array handling in general which i find far more inferior to other languages. From my other comment: Example: Looking for an element and deleting it? (Taken from perlmonks.org) my @array = qw( your array here ); my $search_for = "here"; my( $index )= grep…
The correct answer should've been:
@list = grep { $_ ne 'dogfood' } @list;