camel_case_to_spaces
Split CamelCase and convert to lowercase. Strip surrounding whitespace.
def camel_case_to_spaces(
value: string
) - > string
Split CamelCase and convert to lowercase. Strip surrounding whitespace.
Parameters
| Name | Type | Description |
|---|---|---|
| value | string | The CamelCase string to be transformed into a space-separated, lowercase format. |
Returns
| Type | Description |
|---|---|
string | The processed string with spaces between words, converted to lowercase, and without leading or trailing whitespace. |