Module datafusion_functions::unicode::left

source ·

Structs§

Functions§

  • Returns first n characters in the string, or when n is negative, returns all but last |n| characters. left(‘abcde’, 2) = ‘ab’ The implementation uses UTF-8 code points as characters