static bool hasMatch(String text, List<String> list) { for (String item in list) { if (text == item) { return true; } } return false; }