View source: R/create_folder_name.R
create_folder_name | R Documentation |
This function takes a text string and returns a clean, standardized name for a folder.
create_folder_name(x, sep = "-")
x |
A character string to be converted into a folder-friendly name. |
sep |
A character used as the separator between words (default is "-"). |
A character string formatted as a clean folder name.
create_folder_name("My Folder Name") # Returns "my-folder-name"
create_folder_name("Another_example", sep = "_") # Returns "another_example"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.