Existe-t-il des algorithmes permettant de trouver la correspondance la plus proche d'une chaîne de caractères dans une collection de chaînes de caractères ? Par exemple :
string_to_match = 'What color is the sky?'
strings = [
'What colour is the sea?',
'What colour is the sky?',
'What colour is grass?',
'What colour is earth?'
]
answer = method_using_string_matching_algorithm(string_to_match, strings)
answer # returns strings[1] 'What colour is the sky?'