字母大小写转换
输入内容 文本
输出结果
使用说明
• 全部大写:hello world → HELLO WORLD • 全部小写:Hello World → hello world • 驼峰命名:hello_world → helloWorld • 下划线命名:helloWorld → hello_world • 短横线命名:helloWorld → hello-world • 帕斯卡命名:hello world → HelloWorld
• 全部大写:hello world → HELLO WORLD • 全部小写:Hello World → hello world • 驼峰命名:hello_world → helloWorld • 下划线命名:helloWorld → hello_world • 短横线命名:helloWorld → hello-world • 帕斯卡命名:hello world → HelloWorld
字母转换工具:大小写一键互转,另支持驼峰、下划线、短横线等命名风格互转,变量命名风格统一、数据字段映射的常用小工具。
主流约定:Java/JS 变量用小驼峰,Python 用 snake_case,CSS 类名用 kebab-case,数据库列名多用下划线。团队规范优先于语言默认。
工具按词边界(大小写交界、下划线、短横线)切分转换,连续大写缩写词(如 HTTPServer)的处理规则以实际输出为准,转换后建议抽查缩写词部分。