文本

大小写 CamelCase

免费且即时的在线工具,可将普通文本、字符串或变量转换为 CamelCase。

输入文本
camel-case 结果
100% 安全
快速转换
高精准度

免费在线 CamelCase 转换器

我们的字符串格式化工具可瞬间将您的普通文本、句子或代码变量转换为 CamelCase。只需粘贴您的内容,工具即可自动处理空格和大小写。

如何转换

1. 粘贴 大小写 文本

将您的 大小写 内容粘贴或输入到输入框中。

2. 转换过程

我们的工具会自动以最佳设置将您的文本转换为 CamelCase 格式。

3. 复制 CamelCase

转换完成。您现在可以直接将结果复制到剪贴板。

常见问题解答

转换规格

输入大小写
输出CamelCase
安全性HTTPS / 自动删除
价格
免费

使用代码

camelCase

Takes an input string in any common format (space-separated, kebab-case, snake_case, PascalCase, etc.) and converts it to camelCase. The function first normalizes the string by identifying word boundaries (including transitions between acronyms, letters/numbers, and common delimiters like spaces, hyphens, dots, and underscores), then joins the segments together with the first segment in lowercase and each subsequent segment capitalized.

参数

名称类型描述
textstringThe text to convert.

返回值

stringThe camel cased string.
npm i @razomy/string-case
import {camelCase} from '@razomy/string-case';

camelCase('Foo Bar');
// => fooBar

camelCase('--foo-bar--');
// => fooBar

camelCase('__FOO_BAR__');
// => fooBar