Languages
[Edit]
EN

Python - convert camelCase to sentence case

0 points
Created by:
Faith-W
503

In this article, we would like to show you how to convert camelCase to sentence case in Python.

Practical example

In this example, we use re.sub() function to replace every capital letter with the same letter in lowercase followed by a space character. Then with string slicing we convert whole string to the lowercase except the first letter which we convert to the uppercase.

import re


def sentence_case(string):
    if string != '':
        result = re.sub('([A-Z])', r' \1', string)
        return result[:1].upper() + result[1:].lower()
    return


text = "mySampleText"
print(sentence_case(text))

Output:

My sample text

References

Related posts

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - string (popular problems)

Python - convert camelCase to sentence case
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join