in reply to Re: how to ignore ' in an arrayin thread how to ignore ' in an array
my @data = qw ('hello world' wondered o'brian!); print "Before: @data\n"; map {tr/'//d} @data; print "After: @data\n"; [download]