pub fn regexp_replace<T: StringOffsetSizeTrait>(
    args: &[ArrayRef]
) -> Result<ArrayRef>
Expand description

Replaces substring(s) matching a POSIX regular expression.

example: regexp_replace('Thomas', '.[mN]a.', 'M') = 'ThM'