텍스트

대소문자 변환 대상 CamelCase

일반 텍스트, 문자열 또는 변수를 CamelCase(으)로 변환하는 무료 즉시 온라인 도구입니다.

입력 텍스트
camel-case 결과
100% 보안
빠른 변환
높은 정확도

무료 온라인 CamelCase 변환기

우리의 문자열 서식 도구는 일반 텍스트, 문장 또는 코드 변수를 즉시 CamelCase(으)로 변환합니다. 내용을 붙여넣기만 하면 도구가 공백과 대문자를 자동으로 처리합니다.

변환 방법

1. 대소문자 텍스트 붙여넣기

입력 영역에 대소문자 내용을 붙여넣거나 입력하세요.

2. 변환 과정

도구가 텍스트를 CamelCase 형식으로 자동 변환하며 최적의 설정을 적용합니다.

3. CamelCase 복사

변환이 완료되었습니다. 이제 결과를 클립보드로 바로 복사할 수 있습니다.

자주 묻는 질문 (FAQ)

변환 사양

입력대소문자
출력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