Convert the case of objects in a character vector to Title Case

title_case(in_chr)

Arguments

in_chr

a character vector

Value

a character vector with Each Object In Title Case

Examples

test <- c("hspa8","scnn1a","fhqwghads")
title_case(test)
#> [1] "Hspa8"     "Scnn1a"    "Fhqwghads"