How does it work?
This tool converts text to SCREAMING_SNAKE_CASE format. SCREAMING_SNAKE_CASE is a naming convention where:
- All letters are uppercase
- Words are separated by underscores (_)
- No spaces, hyphens, or other separators between words
For example, "hello world" becomes "HELLO_WORLD", and "userProfileData" becomes "USER_PROFILE_DATA".
Examples of SCREAMING_SNAKE_CASE conversion
Original text
hello world
hello-world
HELLO-WORLD
hello_world
HELLO_WORLD
hello.world
Hello World
helloWorld
ThisIsATestConverted to SCREAMING_SNAKE_CASE
HELLO_WORLD
HELLO_WORLD
HELLO_WORLD
HELLO_WORLD
HELLO_WORLD
HELLO_WORLD
HELLO_WORLD
HELLO_WORLD
THIS_IS_ATESTSCREAMING_SNAKE_CASE is commonly used in programming for:
- Constants and configuration values (e.g., MAX_RETRY_COUNT, DEFAULT_TIMEOUT)
- Environment variables (e.g., DATABASE_URL, API_KEY)
- Enum values in some programming languages
- Macro definitions in languages like C and C++
Other tools
See other tools