filesstrings (version 2.0.1)

str_split_camel_case: Split a string based on CamelCase

Description

Vectorized over string.

Usage

str_split_camel_case(string, lower = FALSE)

Arguments

string

A character vector.

lower

Do you want the output to be all lower case (or as is)?

Value

A list of character vectors, one list element for each element of string.

References

Adapted from Ramnath Vaidyanathan's answer at http://stackoverflow.com/questions/8406974/splitting-camelcase-in-r.

Examples

Run this code
# NOT RUN {
str_split_camel_case(c("RoryNolan", "NaomiFlagg", "DepartmentOfSillyHats"))
# }

Run the code above in your browser using DataCamp Workspace