Expand description
Defines kernel to extract a substring of an Array Supported array types: [GenericStringArray], [GenericBinaryArray], [GenericByteViewArray], [FixedSizeBinaryArray], [DictionaryArray]
Functionsยง
- ascii_
bounds ๐ - Returns the
startandendbyte offset of the substring of an ASCIIval, where one char is one byte. - binary_
view_ ๐substring - byte_
substring ๐ - fixed_
size_ ๐binary_ substring - string_
view_ ๐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. - view_
substring_ ๐range - Byte range of one element, following the same rules as
byte_substring.