javascript - 在 JavaScript 中查找两个字符串之间的差异

标签 javascript string algorithm difference

我需要找出两个字符串之间的区别。

const string1 = 'lebronjames';
const string2 = 'lebronnjames';

预期的输出是找到额外的 n 并将其记录到控制台。

有没有办法在 JavaScript 中做到这一点?

最佳答案

对于更复杂的差异检查,另一种选择是使用 PatienceDiff 算法。我将这个算法移植到 Javascript 中......

https://github.com/jonTrent/PatienceDiff

...虽然该算法通常用于文本的逐行比较(例如计算机程序),但它仍然可以用于逐字符的比较。例如,要比较两个字符串,您可以执行以下操作...

let a = "thelebronnjamist";
let b = "the lebron james";

let difference = patienceDiff( a.split(""), b.split("") );

...将difference.lines 设置为包含比较结果的数组...

difference.lines: Array(19)

0: {line: "t", aIndex: 0, bIndex: 0}
1: {line: "h", aIndex: 1, bIndex: 1}
2: {line: "e", aIndex: 2, bIndex: 2}
3: {line: " ", aIndex: -1, bIndex: 3}
4: {line: "l", aIndex: 3, bIndex: 4}
5: {line: "e", aIndex: 4, bIndex: 5}
6: {line: "b", aIndex: 5, bIndex: 6}
7: {line: "r", aIndex: 6, bIndex: 7}
8: {line: "o", aIndex: 7, bIndex: 8}
9: {line: "n", aIndex: 8, bIndex: 9}
10: {line: "n", aIndex: 9, bIndex: -1}
11: {line: " ", aIndex: -1, bIndex: 10}
12: {line: "j", aIndex: 10, bIndex: 11}
13: {line: "a", aIndex: 11, bIndex: 12}
14: {line: "m", aIndex: 12, bIndex: 13}
15: {line: "i", aIndex: 13, bIndex: -1}
16: {line: "e", aIndex: -1, bIndex: 14}
17: {line: "s", aIndex: 14, bIndex: 15}
18: {line: "t", aIndex: 15, bIndex: -1}

aIndex === -1bIndex === -1 指示两个字符串之间的差异。具体...

  • 元素 3 表示在 b 中的位置 3 中找到了字符 ""。
  • 元素 10 表示在 a 中的位置 9 中找到了字符“n”。
  • 元素 11 表示在 b 中的位置 10 中找到了字符 ""。
  • 元素 15 表示在 a 的位置 13 中找到了字符“i”。
  • 元素 16 表示在 b 中的位置 14 找到了字符“e”。
  • 元素 18 表示在 a 中的第 15 位找到字符“t”。

请注意,PatienceDiff 算法对于比较两个相似的文本 block 或字符串非常有用。它不会告诉您是否进行了基本编辑。例如,以下...

let a = "james lebron";
let b = "lebron james";

let difference = patienceDiff( a.split(""), b.split("") );

...返回包含...的difference.lines

difference.lines: Array(18)

0: {line: "j", aIndex: 0, bIndex: -1}
1: {line: "a", aIndex: 1, bIndex: -1}
2: {line: "m", aIndex: 2, bIndex: -1}
3: {line: "e", aIndex: 3, bIndex: -1}
4: {line: "s", aIndex: 4, bIndex: -1}
5: {line: " ", aIndex: 5, bIndex: -1}
6: {line: "l", aIndex: 6, bIndex: 0}
7: {line: "e", aIndex: 7, bIndex: 1}
8: {line: "b", aIndex: 8, bIndex: 2}
9: {line: "r", aIndex: 9, bIndex: 3}
10: {line: "o", aIndex: 10, bIndex: 4}
11: {line: "n", aIndex: 11, bIndex: 5}
12: {line: " ", aIndex: -1, bIndex: 6}
13: {line: "j", aIndex: -1, bIndex: 7}
14: {line: "a", aIndex: -1, bIndex: 8}
15: {line: "m", aIndex: -1, bIndex: 9}
16: {line: "e", aIndex: -1, bIndex: 10}
17: {line: "s", aIndex: -1, bIndex: 11}

请注意,PatienceDiff 不报告名字和姓氏的交换,而是提供一个结果,显示从 a 中删除了哪些字符以及向 b< 添加了哪些字符b 的结果结束。

编辑:添加了名为 patienceDiffPlus 的新算法。

在仔细研究上面提供的最后一个示例后,该示例显示了 PatienceDiff 在识别可能移动的线条方面的局限性,我突然意识到有一种优雅的方法可以使用 PatienceDiff 算法来确定是否有任何线条确实可能移动而不是而不仅仅是显示删除和添加。

简而言之,我将 patienceDiffPlus 算法(到上面标识的 GitHub 存储库)添加到 PatienceDiff.js 文件的底部。 patienceDiffPlus 算法从初始 patienceDiff 算法中取出删除的 aLines[] 和添加的 bLines[],并再次通过 patienceDiff 算法运行它们。即,patienceDiffPlus 正在寻找可能移动的行的最长公共(public)子序列,因此它将此记录在原始 patienceDiff 结果中。 patienceDiffPlus 算法会继续执行此操作,直到找不到更多移动的行。

现在,使用 patienceDiffPlus,以下比较...

let a = "james lebron";
let b = "lebron james";

let difference = patienceDiffPlus( a.split(""), b.split("") );

...返回包含...的difference.lines

difference.lines: Array(18)

0: {line: "j", aIndex: 0, bIndex: -1, moved: true}
1: {line: "a", aIndex: 1, bIndex: -1, moved: true}
2: {line: "m", aIndex: 2, bIndex: -1, moved: true}
3: {line: "e", aIndex: 3, bIndex: -1, moved: true}
4: {line: "s", aIndex: 4, bIndex: -1, moved: true}
5: {line: " ", aIndex: 5, bIndex: -1, moved: true}
6: {line: "l", aIndex: 6, bIndex: 0}
7: {line: "e", aIndex: 7, bIndex: 1}
8: {line: "b", aIndex: 8, bIndex: 2}
9: {line: "r", aIndex: 9, bIndex: 3}
10: {line: "o", aIndex: 10, bIndex: 4}
11: {line: "n", aIndex: 11, bIndex: 5}
12: {line: " ", aIndex: 5, bIndex: 6, moved: true}
13: {line: "j", aIndex: 0, bIndex: 7, moved: true}
14: {line: "a", aIndex: 1, bIndex: 8, moved: true}
15: {line: "m", aIndex: 2, bIndex: 9, moved: true}
16: {line: "e", aIndex: 3, bIndex: 10, moved: true}
17: {line: "s", aIndex: 4, bIndex: 11, moved: true}

请注意添加的 moved 属性,它标识一行(或本例中的字符)是否可能被移动。同样,patienceDiffPlus 只是匹配删除的 aLines[] 和添加的 bLines[],因此不能保证这些行确实被移动了,但很有可能它们确实被移动了。

关于javascript - 在 JavaScript 中查找两个字符串之间的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57102484/

相关文章:

javascript - ng-model 不更新 Controller 值

javascript - 如何在JS中的文本节点(document.createTextNode ('...'))中添加span元素?

javascript - 我可以使用innerHTML 将所有可能的HTML 元素附加到哪个HTML 元素?

python - 字符串创建 : Differences between two syntaxes ' ' and ""?

java - 检查玩家是否可以在所述位置放置方 block

algorithm - 用迭代代替递归

java - HashMap 中的平均跳数

javascript - setBackgroundImage 无法按预期使用多个功能

javascript - 如何使用 slim 引用 javascript 文件

javascript - 错误 : Couldn't register the navigator. 您是否使用 'NavigationContainer' 包装了您的应用程序?