在Java中实现Soundex

时间:2017-04-07 10:37:35

标签: java search soundex

请帮我在java中实现字符串相似性比较! 使用org.apache.commons.codec.language.Soundex库

Soundex soundex = new Soundex();
String phoneticValue = soundex.encode("YourString");
String phoneticValue2 = soundex.encode("YourStrink");

if(phoneticValue.equals(phoneticValue2)){

}

似乎不起作用。在类似字符串的情况下,编码功能会给出不同的结果。 如何比较两个类似的字符串与这个库?

期待尽快收到你的来信! ;)

0 个答案:

没有答案