It's easy to replace a character one time with a function such as this:
regexp_replace(string INITIAL_STRING, string PATTERN, string REPLACEMENT)
But how to deal with multiple string replacements in a column at one time?
For example, with relation like A to @, B to #, C to Z, how would one change "ABC" into "@#Z"?
regexp_replace(regexp_replace(...),...)for each pattern.