"""String utility functions."""
"""Convert a string to snake_case.
Args:
text: The string to convert
Returns:
str: The snake_case version of the string
"""
# Replace any non-alphanumeric characters with underscores
=
# Insert an underscore before any uppercase letter that follows a lowercase letter
=
# Convert to lowercase
return