firstup {DIZtools} | R Documentation |
Converts the first letter of the input string to uppercase.
firstup(x)
x |
A character string. E.g. "hello world" will become "Hello world". |
Returns the input string but with a capital first letter.
{
firstup("first letter of this string will be upper case as return")
}