This Oracle tutorial explains how to use the Oracle/PLSQL TRANSLATE function with syntax and examples.
The Oracle/PLSQL TRANSLATE function replaces a sequence of characters in a string with another set of characters. However, it replaces a single character at a time.
For example, it will replace the 1st character in the string_to_replace with the 1st character in the replacement_string. Then it will replace the 2nd character in the string_to_replace with the 2nd character in the replacement_string, and so on.
The syntax for the TRANSLATE function in Oracle/PLSQL is:
The string to replace a sequence of characters with another set of characters.
The string that will be searched for in string1.
All characters in the string_to_replace will be replaced with the corresponding character in the replacement_string.
The TRANSLATE function returns a string value.
The TRANSLATE function can be used in the following versions of Oracle/PLSQL:
Let's look at some Oracle TRANSLATE function examples and explore how to use the TRANSLATE function in Oracle/PLSQL.
For example: