Short question: How do I match strings (words) like this:
string_1 = 'e.V.'
string_2 = 'Kaufmann e.K.'
I have tried the following regex:
regex_string_1 = r'(\be.V.\b)'
regex_string_2 = r'(\bKaufmann e.K.\b)'
See demo
I don't know how to handle the dots. I tried multiple different ways. Nothing worked!