Is there a way in python to perform partial matching between a word and a generic pattern (a regular expression)?
The aim is to understand how far is a word from a given pattern, e.g. the distance of a word from the pattern of a license plate that is in format AB123CD, so two letters,three digts and two letters again expressed by its regular expression.
Examples: -the word DF345EE matches exactly the pattern.
-the word D345EE would match with one letter more at the beginning
-the word DFC45EE would match if the 'C' was a digit.
I was looking for fuzzy matching but it's usually used for searching a word in another expression.
Thanks!
There is regex module that supports fuzzy matches, needs once
pip install regex
. In next code{e<=2}
means at most 2 errors of any type (substitutions, insertions, deletions).e
means any error,s
is count of substitions,i
insertions,d
deletions, you may provide complex combination like{1<=s<=2,2<i<=4,3<=d<6}
.Outputs: