导语:
本文主要介绍了关于python中camel函数的使用的相关知识,包括python中get函数,以及python中concat函数这些编程知识,希望对大家有参考作用。
1. camel 接收字符串形式的变量名,并将其转换为驼峰式大小写。
2. 该函数考虑可变形式的字符串,单词之间是相对分离的,而不是直接连续的单词。
比如somefunctionname。
实例
from re import sub
def camel(s):
s = sub(r"(_|-)+", " ", s).title().replace(" ", "")
return s[0].lower() + s[1:]
# EXAMPLES
camel('some_database_field_name') # 'someDatabaseFieldName'
camel('Some label that needs to be camelized') # 'someLabelThatNeedsToBeCamelized'
camel('some-javascript-property') # 'someJavascriptProperty'
camel('some-mixed_string with spaces_underscores-and-hyphens') # 'someMixedStringWithSpacesUnderscoresAndHyphens'
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python报302错误怎么办10/02
- ♥ python cv2 模块如何查找图像?09/16
- ♥ 如何用python求n的阶乘并输出?09/09
- ♥ python sleep和wait对比分析09/17
- ♥ 如何在python中导入模块10/13
- ♥ python是后端吗?10/30
内容反馈