大小写转换器
在 camelCase、PascalCase、snake_case、kebab-case 等格式之间转换文本。
Examples:
lowercase: hello world
UPPERCASE: HELLO WORLD
Title Case: Hello World
Sentence case: Hello world.
camelCase: helloWorld
PascalCase: HelloWorld
snake_case: hello_world
kebab-case: hello-world
CONSTANT_CASE: HELLO_WORLD
dot.case: hello.world
Case Converter - 技术详情
Different programming languages and frameworks have different naming conventions. camelCase is common in JavaScript, snake_case in Python, PascalCase for classes, and kebab-case for CSS and URLs.
命令行替代方案
# No standard terminal command, but in Bash:\n# UPPERCASE\necho 'hello' | tr '[:lower:]' '[:upper:]'\n\n# lowercase\necho 'HELLO' | tr '[:upper:]' '[:lower:]'