Description Usage Arguments Examples
Function used to convert character vectors to spine case format.
1 2 3 4 5 6 7 8 | str_spine_case(string, whitespace = getOption("lettercase.whitespace",
"[\\s-_]"), collapse.whitespace = getOption("collapse.whitespace", TRUE))
str_spinal_case(string, whitespace = getOption("lettercase.whitespace",
"[\\s-_]"), collapse.whitespace = getOption("collapse.whitespace", TRUE))
str_hyphen_case(string, whitespace = getOption("lettercase.whitespace",
"[\\s-_]"), collapse.whitespace = getOption("collapse.whitespace", TRUE))
|
string |
object to turn into a title case |
whitespace |
character; regular expression pattern for matching whitespace characters |
collapse.whitespace |
logical; whether adjacent whitespace is collapsed * characters are all lower case
* non- |
1 2 3 | str_spine_case( "One Flew Over The Cuckoo's Nest" ) # One Flew Over The Cuckoo's Nest
str_spine_case( "Catch 22" ) # catch-22
str_spine_case( "Catch_ 22" )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.