You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iTi-Flask/iti/applications/common/utils/str.py

9 lines
193 B
Python

def camel_case(s):
"""
转换为驼峰命名(小驼峰)
"""
if not s:
return s
parts = iter(s.split("_"))
return next(parts) + "".join(i.title() for i in parts)