Convert case of a string, without impacting abbreviations
str_to_abb.Rd
Apply str_to_upper to strings with number of characters lower than "n_abb".
Examples
string <- c("aaaaa","bb","ccc","dddd")
str_to_abb(string)
#> [1] "Aaaaa" "BB" "CCC" "Dddd"