Expand description
Functions for string case manipulation, such as detecting the identifier case, and converting it into appropriate form.
Functionsยง
- is_
camel_ ๐case - is_
lower_ ๐snake_ case - is_
snake_ ๐case - is_
upper_ ๐snake_ case - to_
camel_ ๐case - Converts an identifier to an UpperCamelCase form.
Returns
Noneif the string is already in UpperCamelCase. - to_
lower_ ๐snake_ case - Converts an identifier to a lower_snake_case form.
Returns
Noneif the string is already in lower_snake_case. - to_
upper_ ๐snake_ case - Converts an identifier to an UPPER_SNAKE_CASE form.
Returns
Noneif the string is already is UPPER_SNAKE_CASE.