I am developing webservice in Java using REST framework.
I am using MySQL 5.1 database as a backend.
I am performing search operation on one of my table say Stops using like pattern.
But now I want to perform "Approximate_string_matching (fuzzy string searching)" for above search. Consider an e.g. for 23 ST stop, user can provide search string 23rd station, 23rd, 23 station, 23rd ST etc.
For this Approximate_string_matching algorithm I found the link http://en.wikipedia.org/wiki/Approximate_string_matching
But I dont know how to implement it.
Please guys help me to implement Approximate_string_matching algorithm in Java / MySQL?
Thank you in advance.