in reply to Re: how to ignore ' in an array
in thread how to ignore ' in an array

If you are just removing characters from an array of words, just tr and map.
my @data = qw ('hello world' wondered o'brian!); print "Before: @data\n"; map {tr/'//d} @data; print "After: @data\n";