Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
to_CamelCase = partial solution in Creative category for Conversion into CamelCase by flpo
import re
from functools import partial
to_CamelCase = partial(re.sub, '^(.)|_(.)', lambda m: next(filter(None, m.groups())).upper())
March 10, 2018
Comments: