psolin / cleanco

Company Name Processor written in Python
MIT License
318 stars 94 forks source link

Unable to remove multiple suffix #81

Closed tanjt107 closed 2 years ago

tanjt107 commented 2 years ago

Can the package remove multiple suffix?

>>> from cleanco import basename
>>> basename("Hello World Co.")
'Hello World'
>>> basename("Hello World Co. Ltd") #Expect Hello world
'Hello World Co.'
JarekParal commented 2 years ago

That seems to be a known behaviour of the implementation as it is described in the README:

image