Case Converter
일반 문장과 개발자 식별자를 한곳에서 변환합니다. 문장에는 writing case를, 변수·필드·클래스·URL·설정 키에는 developer naming format을 사용하세요.
무료이며 비공개로 브라우저에서 처리됩니다.
감지: snake_case
camelCase 출력
userProfileImageUrl
모든 네이밍 형식
camelCase
userProfileImageUrlPascalCase
UserProfileImageUrlsnake_case
user_profile_image_urlkebab-case
user-profile-image-urlCONSTANT_CASE
USER_PROFILE_IMAGE_URLdot.case
user.profile.image.urlpath/case
user/profile/image/url일반 문장용 대소문자 형식
일반 문장 형식은 개발자 식별자처럼 단어를 다시 토큰화하지 않고 문장부호, 공백, 줄바꿈을 유지한 채 대소문자만 바꿉니다.
UPPERCASE
USER_PROFILE_IMAGE_URLlowercase
user_profile_image_urlTitle Case
User_Profile_Image_URLSentence case
User_profile_image_url변환은 브라우저에서 로컬로 처리되며 입력은 변환 서버로 전송되지 않습니다.
예시
| 입력 | 출력 |
|---|---|
| hello world | helloWorld |
| user_profile_image | userProfileImage |
| user-profile-image | userProfileImage |
이 변환기의 작동 방식
텍스트 또는 식별자를 붙여넣으면 단어 경계와 일반적인 구분자를 감지해 선택한 네이밍 규칙으로 변환합니다.
- 문장 형식은 문장부호, 공백, 줄바꿈을 유지하면서 글자의 대소문자만 바꿉니다.
- 개발자 형식은 구분자와 case 경계를 토큰화한 뒤 식별자를 다시 구성합니다.
주요 사용 사례
문장부호를 잃지 않고 텍스트를 UPPERCASE, lowercase, Title Case, Sentence case 사이에서 변환합니다.
같은 입력을 camelCase, snake_case, PascalCase, kebab-case 같은 개발자 명명 규칙으로 변환합니다.