Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.

regex_replace

Function: 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 "




Signatures
text, text, text -> text