Buscar herramientas...

Buscar herramientas...

Convertidor de Mayúsculas/Minúsculas

Convertir texto entre MAYÚSCULAS, minúsculas, Título, camelCase, snake_case y más

How Convertidor de Mayúsculas/Minúsculas Works

A Case Converter is a text formatting utility used to standardize capitalization styles. This tool is essential for programmers, data cleaners, and social media managers refactoring variable names, fixing accidental CAPS LOCK typing, and formatting headlines for publication.

The Transformation Logic

The tool uses regex-based replacement patterns:

  • To Title Case: Finds word boundaries \b\w and capitalizes them (ignoring small words like 'a', 'an', 'the' in smart mode).
  • To camelCase: Removes spaces/punctuation and capitalizes the first letter of subsequent words.
  • To snake_case: Replaces all whitespace/punctuation with _ and properly handles existing capital letters.

Frequently Asked Questions

CamelCase (camelCase) starts lowercase and capitalizes new words. Snake_Case (snake_case) uses underscores. Kebab-Case (kebab-case) uses hyphens. Camel is for JS/Java, Snake for Python/DBs, and Kebab for URLs/CSS.