Convert a vector
of characters to camel case by replacing
dots by captial letters.
Examples
nms <- c("aa.foo", "ab.bar")
makeCamelCase(nms)
#> [1] "aaFoo" "abBar"
makeCamelCase(nms, prefix = "x")
#> [1] "xAaFoo" "xAbBar"
Convert a vector
of characters to camel case by replacing
dots by captial letters.
nms <- c("aa.foo", "ab.bar")
makeCamelCase(nms)
#> [1] "aaFoo" "abBar"
makeCamelCase(nms, prefix = "x")
#> [1] "xAaFoo" "xAbBar"