I know you can remove HTML tags with a command such as this:
REGEXP_REPLACE(overview, '<.+?>')
But, some of the text has actual HTML encoding, where the application actually encoded things, like single quotes to be: ' or ’
I'm assuming these are pretty standard. Is there a way to remove them and replace them with the actual character, or am I stuck with REPLACE and listing them?
Many thanks!
`
– MT0 Feb 03 '22 at 20:47