java – 找到两个字符串之间的区别

前端之家收集整理的这篇文章主要介绍了java – 找到两个字符串之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有两个长串.他们几乎相同.
String a = "this is a example"
String b = "this is a examp"

以上代码就是例子.实际字符串相当长.

问题是一个字符串比另外两个字符多2个字符.

我该如何检查哪两个字符?

解决方法

您可以使用 StringUtils.difference(String first,String second).

这是他们如何实现的:

public static String difference(String str1,String str2) {
    if (str1 == null) {
        return str2;
    }
    if (str2 == null) {
        return str1;
    }
    int at = indexOfDifference(str1,str2);
    if (at == INDEX_NOT_FOUND) {
        return EMPTY;
    }
    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;
}
原文链接:https://www.f2er.com/java/122334.html

猜你在找的Java相关文章