I am trying to convert camel case to space separated values using python. For example:
divLineColor -> div Line Color
This lin
I know, it's not regex. But, you can also use map like this
>>> s = 'camelCaseTest' >>> ''.join(map(lambda x: x if x.islower() else " "+x, s)) 'camel Case Test'