splitSnake | R Documentation |
This function splits a string formatted in snake_case into its component words, using underscores as delimiters. It is useful for parsing identifiers or variable names that follow snake_case naming conventions.
splitSnake(x)
x |
A character string in snake_case to be split. |
A list of character vectors, each containing the parts of the string split at underscores.
splitSnake("this_is_snake_case")
splitSnake("another_example_here")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.