pyarrow.compute.utf8_slice_codeunits#
- pyarrow.compute.utf8_slice_codeunits(strings, /, start, stop=None, step=1, *, options=None, memory_pool=None)#
Slice string.
For each string in strings, emit the substring defined by (start, stop, step) as given by SliceOptions where start is inclusive and stop is exclusive. All three values are measured in UTF8 codeunits. If step is negative, the string will be advanced in reversed order. An error is raised if step is zero. Null inputs emit null.
- Parameters
- stringsArray-like or scalar-like
Argument to compute function.
- start
int
Index to start slicing at (inclusive).
- stop
int
orNone
, defaultNone
If given, index to stop slicing at (exclusive). If not given, slicing will stop at the end.
- step
int
, default 1 Slice step.
- options
pyarrow.compute.SliceOptions
, optional Alternative way of passing options.
- memory_pool
pyarrow.MemoryPool
, optional If not passed, will allocate memory from the default memory pool.