Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner re.findall solution in Clear category for Conversion from CamelCase by swagg010164
from re import findall
def from_camel_case(name):
return "_".join([x.lower() for x in findall(r"[A-Z][^A-Z]*", name)])
Dec. 8, 2019