我正在使用 REST 框架在 Java 中开发 Web 服务。
我使用 MySQL 5.1 数据库作为后端。
我正在我的一张桌子上执行搜索操作,说停止使用类似模式。
但现在我想为上述搜索执行“Approximate_string_matching(模糊字符串搜索)”。考虑例如 23 ST 站,用户可以提供搜索字符串 23rd station, 23rd, 23 station, 23rd ST 等。
对于这个Approximate_string_matching算法,我找到了链接http://en.wikipedia.org/wiki/Approximate_string_matching
但我不知道如何实现它。
请大家帮我在Java / MySQL中实现Approximate_string_matching 算法?
先感谢您。