regex_replace
function to replace a piece of text based on a regular expression
with another piece of text
Examples:
regex_replace('hello 42 world', '\d+', '')
-- Result: "hello world"
regex_replace('hello 42 (world)', '\(.*\)', '')
-- Result: "hello 42 "
text, text, text -> text