Hi,
Using Klippa, I have built a scenario that checks the validity of eID cards and submitted pay slips from potential customers. One of the validations is that Klippa extracts the information from the eID or pay slip, and then I compare the information to the information that was submitted by the potential customer. The reason is to make sure that for example the pay slip submitted really belongs to this customer, and it’s not some random pay slip they obtained somewhere.
In this case you can see that my check detects a difference, because the customer entered his name as “FirstName LastName” and Klippa reports the name as “Madame FirstName LastName”.
My check is pretty rudimentary indeed: if there’s just one different character, then it will fail:
Has anyone come across something similar before? Ideally I could apply some “fuzzy matching”, saying that if 90% of the name is identical between both items in the comparison, then probably you could consider it as a match (IF statement validates as true) instead of a difference (IF statement validates as false).
Thank you for thinking along!