I am trying to convert camel case to space separated values using python. For example:
divLineColor -> div Line Color
This lin
(?<=[a-z])([A-Z]) or ([a-z])([A-Z])
(?<=[a-z])([A-Z])
([a-z])([A-Z])