programming-examples/python/Regular_Expression/Convert camel case string to snake case string.py
2019-11-15 12:59:38 +01:00

6 lines
227 B
Python

def camel_to_snake(text):
import re
str1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', text)
return re.sub('([a-z0-9])([A-Z])', r'\1_\2', str1).lower()
print(camel_to_snake('PythonExercises'))