Help for this page
foreach (@data) { my $match = $_ if !/:/; }
foreach (@data) { my $match = $_ if /^[^:]*$/; }
my ($match) = grep !/:/, @data;