Skip to main content

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

NameTypeDescription
valuestringThe CamelCase string to be transformed into a space-separated, lowercase format.

Returns

TypeDescription
stringThe processed string with spaces between words, converted to lowercase, and without leading or trailing whitespace.