I have a string in quotation marks (eg. "Water") but my string value may contain " in the middle ("Wa"ter"). I am trying to write Regex to replace the " surrounded by characters with " - "Wa"ter"
REGEX_Replace([String1], '.+(").+', """).
However, this is replacing the entire string with ". Can you recommend regex to obtain the results I want?