当前位置: 首页 > 图灵资讯 > 行业资讯> python中camel函数的使用

python中camel函数的使用

来源:图灵python
时间: 2024-06-18 09:33:27

1、camel接收字符串的变量名,并将其转换为驼峰。

2、这个函数考虑的是变量形式的字符串,单词之间有相关的分离,而不是直接连续的单词。

比如somefunctioname。

实例

fromreimportsub

defcamel(s):
s=sub(r"(_|-)+","",s).title().replace("","")
returns[0].lower()+s[1:]

#EXAMPLES
camel('some_database_field_name')#'someDatabaseFieldName'
camel('Somelabelthatneedstobecamelized')#'someLabelThatNeedsToBeCamelized'
camel('some-javascript-property')#'someJavascriptProperty'
camel('some-mixed_stringwithspaces_underscores-and-hyphens')#'someMixedStringWithSpacesUnderscoresAndHyphens'

以上就是python中camel函数的使用,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。