TEXT_DECODE v16
Use the TEXT_DECODE
function to translate and decode an encoded string to the VARCHAR2
value that was originally encoded by the TEXT_ENCODE
function. The signature is:
This function returns a VARCHAR2
value.
Parameters
buf
buf
contains the encoded string to translate to the original value encoded by TEXT_ENCODE
.
encode_charset
encode_charset
specifies the character set to which to translate the string before encoding. The default value is NULL
.
encoding
encoding
specifies the encoding type used by TEXT_DECODE
. Specify:
UTL_ENCODE.BASE64
to specify base-64 encoding.UTL_ENCODE.QUOTED_PRINTABLE
to specify quoted printable encoding. This is the default.
Examples
This example uses the TEXT_ENCODE
and TEXT_DECODE
functions to first encode and then decode a string:
- On this page
- Parameters
- Examples