We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hi, could we please have a function that converts a string to sentence case. Some code below with my attempt at this..
str_to_sentence <- function(x) { paste0(str_to_upper(str_sub(x, 1, 1)), str_to_lower(str_sub(x, 2))) }