I am trying to do a regular expression replace in a Databricks notebook.The following query works fine in a regular query (i.e. not running it in a cell in a notebook): select regexp_replace('abcd', '^(.+)c(.+)$', '$1_$2') --normally outputs ab_d H...