I am trying to match German company titles with Python regex. Here is what I have:
(\bUnternehmergesellschaft\b|\bUG haftungsbeschränkt\b|\bUG (haftungsbeschränkt)\b|\bUG\b|\bUnternehmergesellschaft und Compagnie Kommanditgesellschaft\b|\bUG & Co. KG\b)
As you can see in the demo, I do not have a perfect match for each title. Especially when in comes to .
or (
and )
it doesn't work.