Skip to contents

Takes a character string and de-capitalizes the first letter, keeping the rest of the string unchanged.

Usage

lower_first(s)

Arguments

s

A character string to capitalize.

Value

A character string with only the first letter de-capitalized.

Examples

lower_first("Hello World")
#> [1] "hello World"
lower_first("R Programming")
#> [1] "r Programming"