Text Case Tool — Text Case 工具
v1.0.0Convert text between different cases: UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE. Pure Python, no API key required.
运行时依赖
安装命令
点击复制本土化适配说明
Text Case Tool — Text Case 工具 安装说明: 安装命令:["openclaw skills install text-case-tool"]
技能文档
Text Case 转换器
Convert text between different case 格式化s. Useful for programming, writing, and data trans格式化ion.
Features UPPER CASE: ALL CAPS lower case: all lowercase Title Case: First Letter Of Each Word Sentence case: First letter only camelCase: firstLetterLower PascalCase: FirstLetterUpper snake_case: words_with_underscores kebab-case: words-with-hyphens CONSTANT_CASE: WORDS_WITH_UNDERSCORES Usage # Upper case python3 scripts/text_case.py "hello world" --upper
# Lower case python3 scripts/text_case.py "HELLO WORLD" --lower
# Title case python3 scripts/text_case.py "hello world" --title
# camelCase python3 scripts/text_case.py "hello world" --camel
# snake_case python3 scripts/text_case.py "HelloWorld" --snake
# kebab-case python3 scripts/text_case.py "Hello World" --kebab
Examples 输入 Mode 输出 hello world --upper HELLO WORLD HELLO WORLD --lower hello world hello world --title Hello World hello world --camel helloWorld hello world --pascal HelloWorld HelloWorld --snake hello_world hello world --kebab hello-world 中文说明
文本大小写转换工具,支持多种格式:大写、小写、标题、驼峰、蛇形、短横线等。