title_case {taylor} | R Documentation |
Convert string to title case
Description
Capitalize the first letter of each word, and convert the remaining string to lower case.
Usage
title_case(string)
Arguments
string |
String to modify. |
Value
A character string with the first letter of each word capitalized.
Examples
title_case("taylor swift")
title_case("Taylor Swift")
title_case("TAYLOR SWIFT")
[Package taylor version 3.1.0 Index]