DECODE_STRING
Deprecated version
This document refers to a deprecated version of the RQL programming language.
Please go here for documentation related to the latest supported version.
Converts binary to string, given an encoding.
Syntax
DECODE_STRING(<binary>, encoding)
Example
b := ENCODE_STRING("Hello world", "utf-8");
DECODE_STRING(b, "utf-8") // "Hello world"