initcap {SparkR}R Documentation

initcap

Description

Returns a new string column by converting the first letter of each word to uppercase. Words are delimited by whitespace.

Usage

## S4 method for signature 'Column'
initcap(x)

initcap(x)

Details

For example, "hello world" will become "Hello World".

See Also

Other string_funcs: ascii, ascii; base64, base64; concat_ws, concat_ws; concat, concat; decode, decode; encode, encode; format_number, format_number; format_string, format_string; instr, instr; length; levenshtein, levenshtein; locate, locate; lower, lower; lpad, lpad; ltrim, ltrim; regexp_extract, regexp_extract; regexp_replace, regexp_replace; reverse, reverse; rpad, rpad; rtrim, rtrim; soundex, soundex; substring_index, substring_index; translate, translate; trim, trim; unbase64, unbase64; upper, upper

Examples

## Not run: initcap(df$c)

[Package SparkR version 1.6.0 Index]