python camel函数的使用

788次阅读
没有评论

python

python中camel函数

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

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

比如somefunctionname。

python中camel函数的使用实例

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'

以上就是python中camel函数的使用,希望对大家有所帮助。

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2022-03-19发表,共计594字。
新手QQ群:570568346,欢迎进群讨论 Python51学习