Module lpad
datafusion
50.3.0
Module lpad
Module Items
Structs
Functions
In datafusion::
functions::
unicode
datafusion
::
functions
::
unicode
Module
lpad
Copy item path
Source
Structs
§
LPad
Func
Functions
§
lpad
Extends the string to length ‘length’ by prepending the characters fill (a space by default). If the string is already longer than length then it is truncated (on the right). lpad(‘hi’, 5, ‘xy’) = ‘xyxhi’