Python中的字符串分段
我正在寻找“塞子”字符串的最佳方法,“塞子” 是什么,而我目前的解决方案基于此配方 我将其更改为: s = 'String to slugify' slug = unicodedata.normalize('NFKD', s) slug = slug.encode('ascii', 'ignore').lower() slug = re.sub(r'[^a-z0-9]+', '-', slug).strip('-') slug = re.sub(r'[-]+', '-', slug) 有人看到此代码有任何问题吗?它工作正常,但也许我缺少某些东西,或者您知道更好的方法?