Expand description
Defines kernel to extract a substring of an Array Supported array types: [GenericStringArray], [GenericBinaryArray], [FixedSizeBinaryArray], [DictionaryArray]
Functionsยง
- ascii_
bounds ๐ - Returns the
startandendbyte offset of the substring of an ASCIIval, where one char is one byte. - byte_
substring ๐ - fixed_
size_ ๐binary_ substring - substring
- Returns an [
ArrayRef] with substrings of all the elements inarray. - substring_
by_ char - Substrings based on character index
- substring_
by_ ๐char_ impl - Builds the output of
substring_by_char, delegating toboundsto locate the substring of each value. - utf8_
bounds ๐ - Returns the
startandendbyte offset of the substring of an arbitrary UTF-8val.