View source: R/netcdf.R View source: R/base.R
toCamelCase | R Documentation |
Convert a snake-case string (i.e., one constructed with words separated by underlines) to a camel-case string (i.e. one in which the words are strung together, with upper-case for the first letter of all but the first word). See ‘Examples’.
Convert a snake-case string (i.e., one constructed with words separated by underlines) to a camel-case string (i.e. one in which the words are strung together, with upper-case for the first letter of all but the first word). See ‘Examples’.
toCamelCase(s)
toCamelCase(s)
s |
character value to be converted. |
toCamelCase()
returns a camelCase version of s
.
toCamelCase()
returns a camelCase version of s
.
Dan Kelley
toCamelCase("profile_direction") # "profileDirection"
toCamelCase("profile_direction") # "profileDirection"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.