My requirement is to be able to match two strings that are similar but not an exact match. For example, given the following strings
- First Name
- Last Name
- LName
- FName
The output should be FirstName, FName and Last Name, LName as they are a logical match. Are there any libraries that I could use to do this? I am using JAVA to achieve this functionality.
Thanks Raam