Translate any character in the src by a character in replaceString.
The characters in replaceString is corresponding to the characters in matchingString.
The translate will happen when any character in the string matching with the character
in the matchingString.
Usage
translate(x, matchingString, replaceString)
# S4 method for Column,character,character
translate(x, matchingString,
replaceString)
Arguments
x
a string Column.
matchingString
a source string where each character will be translated.
replaceString
a target string where each matchingString character will
be replaced by the character in replaceString
at the same location, if any.