fn.translate( src as String?, mapString as String?, transString as String? ) as String?
Returns a string where every character in $src that occurs in some position in the $mapString is translated into the $transString character in the corresponding location of the $mapString character.
fn.translate("abcd", "abcd", "wxyz"); => wxyz
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.