List of utility methods to do String Difference
if (str1 == null) { return str2; if (str2 == null) { return str1; int at = indexOfDifference(str1, str2); if (at == INDEX_NOT_FOUND) { ...