Help for this page
foreach (@names) { next if /^buckaduck$/i; ... }
foreach (@names) { next if ( lc($_) eq lc('buckaduck') ); ... }