This Oracle tutorial explains how to use the Oracle/PLSQL DECOMPOSE function with syntax and examples.
The Oracle/PLSQL DECOMPOSE function accepts a string and returns a Unicode string.
The syntax for the DECOMPOSE function in Oracle/PLSQL is:
DECOMPOSE( string )
The string that will be decomposed.
The DECOMPOSE function returns a Unicode string.
The DECOMPOSE function can be used in the following versions of Oracle/PLSQL:
Let's look at some Oracle DECOMPOSE function examples and explore how to use the DECOMPOSE function in Oracle/PLSQL.
For example:
DECOMPOSE('Trs bien')
Output: 'Tre`s bien'
DECOMPOSE('')
Output: 'e'
DECOMPOSE('ol')
Output: 'ole'