Python中的第三方titlecase方法
Python 中的标准字符串 title()
方法非常幼稚,无法正确处理将相当简单的单词和短语转换为标题大小写(连字符的单词、带引号的短语、带介词的短语等)。 。
在谷歌搜索中,我找到了一些不同语言的解决方案来解决这个问题。谁能推荐一个Python 中的良好实现吗?
The standard string title()
method in Python is pretty naive and doesn't correctly handle converting even fairly simple words and phrases to title case (hyphenated words, phrases with quotes, phrases with prepositions, etc.).
In Googling around, I found a few solutions in different languages to this problem. Can anyone recommend a good implementation of this in Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过谷歌找到这个:http://muffinresearch。 co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/
Found this via Google: http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/