Kebab Case to Snake Case Converter
user-profile-image를 user_profile_image로 변환합니다.
무료이며 비공개로 브라우저에서 처리됩니다.
감지: snake_case
snake_case 출력
user_profile_image_url
모든 네이밍 형식
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변환은 브라우저에서 로컬로 처리되며 입력은 변환 서버로 전송되지 않습니다.
예시
| 입력 | 출력 |
|---|---|
| user-profile-image | user_profile_image |
| created-at | created_at |
| api-response-url | api_response_url |
이 변환기의 작동 방식
텍스트 또는 식별자를 붙여넣으면 단어 경계와 일반적인 구분자를 감지해 선택한 네이밍 규칙으로 변환합니다.
- 하이픈을 단어 경계로 인식해 밑줄로 바꿉니다.
- 출력은 소문자 snake_case로 정규화합니다.
주요 사용 사례
slug/CSS 이름을 Python, SQL, 데이터 규칙으로 변환합니다.
API나 DB mapping 전에 식별자를 정규화합니다.