Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有编写自己的实现,而是在寻找一个可以在两个文本字符串中找到差异的 Java 类。
理想情况下,我希望该方法采用两个文本字符串,并返回字符串彼此不同的索引列表。
有人知道这样的课程吗?
从 Apache看commons-lang,尤其StringUtils是包含许多有用的字符串方法的类: commons.apache.org
commons-lang
StringUtils
即,getLevenshteinDistance它给出了两个字符串之间的距离。或者indexOfDifference返回第一个不同字符的索引。
getLevenshteinDistance
indexOfDifference