lpad {SparkR} | R Documentation |
Left-pad the string column with
lpad(x, len, pad) ## S4 method for signature 'Column,numeric,character' lpad(x, len, pad)
x |
the string Column to be left-padded. |
len |
maximum length of each output result. |
pad |
a character string to be padded with. |
lpad since 1.5.0
Other string_funcs: ascii
,
base64
, concat_ws
,
concat
, decode
,
encode
, format_number
,
format_string
, initcap
,
instr
, length
,
levenshtein
, locate
,
lower
, ltrim
,
regexp_extract
,
regexp_replace
, reverse
,
rpad
, rtrim
,
soundex
, substring_index
,
translate
, trim
,
unbase64
, upper
## Not run: lpad(df$c, 6, '#')