pyarrow.compute.utf8_center¶
-
pyarrow.compute.
utf8_center
(strings, *, memory_pool=None, options=None, width, padding=' ')¶ Center strings by padding with a given character.
For each string in strings, emit a centered string by padding both sides with the given UTF8 codeunit. Null values emit null.
- Parameters
strings (Array-like or scalar-like) – Argument to compute function
memory_pool (pyarrow.MemoryPool, optional) – If not passed, will allocate memory from the default memory pool.
options (pyarrow.compute.PadOptions, optional) – Parameters altering compute function semantics
**kwargs (optional) – Parameters for PadOptions constructor. Either options or **kwargs can be passed, but not both at the same time.