Skip to content
Advertisement

Titlecasing a string with exceptions

Is there a standard way in Python to titlecase a string (i.e. words start with uppercase characters, all remaining cased characters have lowercase) but leaving articles like and, in, and of lowercased?

Advertisement

Answer

There are a few problems with this. If you use split and join, some white space characters will be ignored. The built-in capitalize and title methods do not ignore white space.

JavaScript

If a sentence starts with an article, you do not want the first word of a title in lowercase.

Keeping these in mind:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement