if (eof(EMPLOYEES)) { print "Sorry, your query produced no results.\n"; } else { while (my $line = ) { #remove the carriage return chomp $line; #splits the line between tabs and get the different elements ($name, $city, $language) = split /\t/, $line; next unless $language =~ /$search/; print "$name can speak " . ($search) . " and lives in " . ($city) . ".\n"; } }