You are viewing documentation about an older version (1.3.0). View latest version

snowflake.snowpark.functions.rpad¶

snowflake.snowpark.functions.rpad(e: ColumnOrName, len: Column | int, pad: ColumnOrName) → Column[source]¶

Right-pads a string with characters from another string, or right-pads a binary value with bytes from another binary value. When called, e is padded to length len with characters/bytes from pad.

Example:

>>> from snowflake.snowpark.functions import lit
>>> df = session.create_dataframe([["a"], ["b"], ["c"]], schema=["a"])
>>> df.select(rpad(col("a"), 3, lit("k")).alias("result")).show()
------------
|"RESULT"  |
------------
|akk       |
|bkk       |
|ckk       |
------------
Copy