Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Conversion into CamelCase by sHooPmyWooP
import re
def to_camel_case(name):
res = "".join([x.capitalize() for x in re.findall(r"[a-zA-Z]+", name)])
return res
Oct. 27, 2020
Comments: