Function datafusion::physical_expr::string_expressions::btrim
source · pub fn btrim<T>(
args: &[Arc<dyn Array>]
) -> Result<Arc<dyn Array>, DataFusionError>where
T: OffsetSizeTrait,
Expand description
Returns the longest string with leading and trailing characters removed. If the characters are not specified, whitespace is removed. btrim(‘xyxtrimyyx’, ‘xyz’) = ‘trim’