CapWords {bfw} | R Documentation |
Capitalize Words
Description
capitalize the first letter in each words in a string
Usage
CapWords(s, strict = FALSE)
Arguments
s |
string |
strict |
logical, indicating whether or not string it set to title case , Default: FALSE |
Value
returns capitalized string
Examples
CapWords("example eXAMPLE", FALSE)
# [1] "Example EXAMPLE"
CapWords("example eXAMPLE", TRUE)
# [1] "Example Example"
[Package bfw version 0.4.2 Index]