命名风格转换
驼峰、下划线、中划线命名互转
naming驼峰下划线中划线camelsnakekebab
命名风格转换器
命名风格说明:
- camelCase: 驼峰命名,首单词小写,后续单词首字母大写 (例如: helloWorld)
- PascalCase: 帕斯卡命名,每个单词首字母大写 (例如: HelloWorld)
- snake_case: 蛇形命名,小写单词用下划线连接 (例如: hello_world)
- kebab-case: 短横线命名,小写单词用短横线连接 (例如: hello-world)
- CONSTANT_CASE: 常量命名,大写单词用下划线连接 (例如: HELLO_WORLD)
- dot.case: 点号命名,小写单词用点号连接 (例如: hello.world)
- path/case: 路径命名,小写单词用斜杠连接 (例如: hello/world)