Expand description
Common utilities for implementing string functions
Enumsยง
- Trim
Type ๐
Functionsยง
- case_
conversion ๐ - case_
conversion_ ๐array - case_
conversion_ ๐ascii_ array - All values of string_array are ASCII, and when converting case, there is no changes in the byte array length. Therefore, the StringArray can be treated as a complete ASCII string for case conversion, and we can reuse the offsets buffer and the nulls buffer.
- general_
trim ๐ - string_
trim ๐ - Applies the trim function to the given string array(s) and returns a new string array with the trimmed values.
- string_
view_ ๐trim - Applies the trim function to the given string view array(s) and returns a new string view array with the trimmed values.
- to_
lower ๐ - to_
upper ๐ - trim_
and_ ๐append_ str - Trims the given string and appends the trimmed string to the views buffer and the null buffer.