Android String Difference difference(String str1, String str2)

Here you can find the source of difference(String str1, String str2)

Description

difference

License

Apache License

Declaration

public static String difference(String str1, String str2) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static final int INDEX_NOT_FOUND = -1;

    public static String difference(String str1, String str2) {
        if (str1 == null) {
            return str2;
        }/*  w w w .  j  av a 2 s .  c  o m*/
        if (str2 == null) {
            return str1;
        }
        int at = indexOfDifference(str1, str2);
        if (at == INDEX_NOT_FOUND) {
            return "";
        }
        return str2.substring(at);
    }

    public static int indexOfDifference(CharSequence cs1, CharSequence cs2) {
        if (cs1 == cs2) {
            return INDEX_NOT_FOUND;
        }
        if (cs1 == null || cs2 == null) {
            return 0;
        }
        int i;
        for (i = 0; i < cs1.length() && i < cs2.length(); ++i) {
            if (cs1.charAt(i) != cs2.charAt(i)) {
                break;
            }
        }
        if (i < cs2.length() || i < cs1.length()) {
            return i;
        }
        return INDEX_NOT_FOUND;
    }
}