spark_connect_rs::functions

Function substring

Source
pub fn substring(
    src: impl Into<Column>,
    pos: impl Into<Column>,
    len: impl Into<Column>,
) -> Column
Expand description

Substring starts at pos and is of length len when str is String type or returns the slice of byte array that starts at pos in byte and is of length len when str is Binary type.