camelCase: Converts text with separators to camel case (i.e., camelCase)

View source: R/camelCase.R

camelCaseR Documentation

Converts text with separators to camel case (i.e., camelCase)

Description

Converts text with separators to camel case (i.e., camelCase)

Usage

camelCase(x, sep = "_")

Arguments

x

Vector of text to be converted

sep

The symbol that separates words in the text

Details

Eliminates separating character and capitalizes the first letter of each word except the first word. For example converts "This is an example" to thisIsAnExample.


evanchildress/plotHacks documentation built on July 29, 2022, 5 a.m.