The snake case converter converts a text from uppercase or lowercase into the snake case, replacing spaces are by underscores (_) and capitalizing all initials letters. Snake case is commonly used for function or variable names in programming, as for some people it is easier to read than CamelCase. To obtain the converted results, the entered text needs to be submitted.
What is Snake Case?
Snake Case is a style of writing in which the word components are combined with underscores instead of spaces. The letters of the words are usually all written in lower case. Snake Case "becomes" snake_case ". There is also a variant called SCREAMING_SNAKE_CASE, which uses capital letters only. Snake Case is often used as a convention for naming functions and filenames.
Example for Snake Case
Input | The snake case converter converts text to snake case. |
Output | The_Snake_Case_Converter_Converts_Text_To_Snake_Case_ |