View source: R/defaultCombine.R
defaultCombine | R Documentation |
Default combine strings
defaultCombine(...)
snakeCombine(...)
camelCombine(...)
dotCombine(...)
blankCombine(...)
... |
uses default to combine strings |
combined strings
snakeCombine()
: use snake_case to combine 2 strings
camelCombine()
: use camelCase to combine strings
dotCombine()
: use the default method for combining two strings
blankCombine()
: combine using a blank separator
Matthew L. Fidler
# default combine
defaultCombine("f", "depot")
defaultCombine(list(c("a", "funny", "c")))
defaultCombine(c("a", "funny", "c"))
# snake combine
snakeCombine("f", "depot")
snakeCombine(list(c("a", "funny", "c")))
snakeCombine(c("a", "funny", "c"))
# dot combine
dotCombine("f", "depot")
dotCombine(list(c("a", "funny", "c")))
dotCombine(c("a", "funny", "c"))
# blank combine
blankCombine("f", "depot")
blankCombine(list(c("a", "funny", "c")))
blankCombine(c("a", "funny", "c"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.