本文介绍了difflib在Ruby上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Ruby上是否有类似于Python的 difflib 的库?
Is there a library similar to Python's difflib on Ruby?
特别是,我需要一种具有与 difflib.get_close_matches 相似的方法.有什么建议吗?
Particularly, I need one that has a method similar to difflib.get_close_matches. Any recommendations?
推荐答案
经过研究,我建议使用 amatch 或 SimMetrics (对于JRuby),并手动实现get_close_matches方法.这两个库都提供了许多字符串相似性算法的实现.
After some research, I suggest using amatch or SimMetrics (with JRuby) and manually implement the get_close_matches method. Both libs offer implementations of many string similarity algorithms.
这篇关于difflib在Ruby上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!