Learn R Programming

lettercase (version 0.13.1)

str_spine_case: str_spine_case

Description

Function used to convert character vectors to spine case format.

Usage

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))

Arguments

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- \w, \s and - are dropped * \w and - are converted to underscore * no support for acronyms

Examples

Run this code
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" )

Run the code above in your browser using DataLab