#Tool

This tool converts the string passed as input to Snake case. By default, space is used as the delimeter to replace it with underscore (_) but tool provides an option to override the default input and use any other delimeter. There is also an option to choose whether Lower snake case is needed or Screaming snake case. More information about snake case is given below.

#Knowledge

Snake case refers to the style of writing in which each work is separated with an underscore (_) character. This case is used in computer engineering world to define identifiers like variables, functions in programming languages, table names in databases, etc. All characters in snake case can either be in lower case or upper case. If letters are in upper case it is called as SCREAMING SNAKE CASE. Below are some examples of Lower case.
  • this_is_snake_case
  • i_am_snake_case
  • I_AM_ALSO_SNAKE_CASE
  • I_CAN_BE_CALLED_SCREAMING_SNAKE_CASE