str_to_firstup.RdCapitalize the first character of a string without altering case of any other character.
str_to_firstup(string)
| string | String to modify |
|---|
str_to_firstup("age at death")#> [1] "Age at death"str_to_firstup("baseline BMI")#> [1] "Baseline BMI"#> [1] "Age at death" "Baseline BMI"