如何比较文本
就像标题一样,如何比较文本?。例如,请访问 textdiff.com。
Like the title, How to compare text?. For a example, go to textdiff.com.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
就像标题一样,如何比较文本?。例如,请访问 textdiff.com。
Like the title, How to compare text?. For a example, go to textdiff.com.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
查看Levenshtein 距离。这是一种相当通用的算法,用于识别两个字符串之间的差异。
Check out Levenshtein distance. This is a fairly general algorithm for identifying differences between two strings.
您可能想看看 Pear 的
Text_Diff
http://pear.php .net/package/Text_Diff/
You may want to have a look at Pear's
Text_Diff
http://pear.php.net/package/Text_Diff/
http://en.wikipedia.org/wiki/Longest_common_subsequence_problem
http://en.wikipedia.org/wiki/Longest_common_subsequence_problem
如果您正在寻找终端命令,请查看 diff,默认情况下在 Linux 中找到。你也可以通过安装 cygwin 在 Windows 上使用它[有很多多余的包袱。 :\]
if you're looking for a terminal command, check out diff, found in linux by default. You can also have it on windows by installing cygwin [with a LOT of excess baggage. :\ ]
我建议使用杰卡德相似系数。将每个句子视为一个单元。
I would suggest Jaccard's Similarity coefficient. Treating each sentence as a unit.