The Case Converter extension for Visual Studio Code allows you to easily convert selected text into various cases, including:
UPPERCASE
lowercase
CamelCase
snake_case
kebab-case
Title Case
This extension is designed to improve productivity for developers who frequently work with different naming conventions.
-
Convert to UPPERCASE
Converts all selected text to uppercase.
Example:hello world
→HELLO WORLD
-
Convert to lowercase
Converts all selected text to lowercase.
Example:Hello World
→hello world
-
Convert to CamelCase
Converts the selected text to CamelCase. Handles:snake_case
→SnakeCase
multiple words
→MultipleWords
-
Convert to snake_case
Converts the selected text to snake_case. Handles:CamelCase
→camel_case
multiple words
→multiple_words
-
Convert to kebab-case
Converts the selected text to kebab-case. Handles:CamelCase
→camel-case
multiple words
→multiple-words
-
Convert to Title Case
Converts the selected text to Title Case.
Example:hello world
→Hello World
By Ilya Khmelevsky M3108 group