java find longest word in a string code example
Example: find shortest string in array java
public static String smallest(String words[]) {
if (words == null || words.length < 1) {
return "";
}
String smallest = words[0];
for (int i = 1; i < words.length; i++) {
if (words[i].length() < smallest.length()) {
smallest = words[i];
}
}
return smallest;
}// smallest