combinePaste2 {nlmixr2lib} | R Documentation |
Combine two in a manner similar to 'paste()' strings using the default combine type
combinePaste2(
a,
b,
combineType = c("default", "snake", "camel", "dot", "blank")
)
a |
first string to combine |
b |
second string to combine |
combineType |
is the type of combination; can be: - - - - - |
Combined strings separated with 'defaultCombine()'
Matthew L. Fidler
combinePaste2("f", "depot")
combinePaste2("f", "depot", "snake")
combinePaste2("f", "depot", "dot")
combinePaste2("f", "depot", "blank")