pub fn split_part<T>(
    args: &[Arc<dyn Array>]
) -> Result<Arc<dyn Array>, DataFusionError>
where T: OffsetSizeTrait,
Expand description

Splits string at occurrences of delimiter and returns the n’th field (counting from one). split_part(‘abc~@def@ghi’, ‘@~’, 2) = ‘def’