Android Utililty Methods String Difference

List of utility methods to do String Difference

Description

The list of methods to do String Difference are organized into topic(s).

Method

Stringdifference(String str1, String str2)
difference
if (str1 == null) {
    return str2;
if (str2 == null) {
    return str1;
int at = indexOfDifference(str1, str2);
if (at == INDEX_NOT_FOUND) {
...