gpt4 book ai didi

python - 将 Snake Case 转换为 Lower CamelCase (lowerCamelCase)

转载 作者:IT老高 更新时间:2023-10-28 20:22:50 24 4
gpt4 key购买 nike

在 Python 2.7 中从蛇形大小写 (my_string) 转换为小 Camel 大小写 (myString) 的好方法是什么?

显而易见的解决方案是用下划线分割,将除第一个单词之外的每个单词大写,然后重新连接在一起。

但是,我很好奇其他更惯用的解决方案或使用 RegExp 来实现此目的的方法(使用一些大小写修饰符?)

最佳答案

def to_camel_case(snake_str):
components = snake_str.split('_')
# We capitalize the first letter of each component except the first one
# with the 'title' method and join them together.
return components[0] + ''.join(x.title() for x in components[1:])

例子:

In [11]: to_camel_case('snake_case')
Out[11]: 'snakeCase'

关于python - 将 Snake Case 转换为 Lower CamelCase (lowerCamelCase),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19053707/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com