transcodeToBlob() Operation
Syntax |
| |
---|---|---|
Semantics | The operation transcodes internal strings (always UTF-8 encoded) into a blob containing the characters of the current string encoded in a given character set. | |
Substitutables |
| Can be any variable or object attribute having the type String. |
| Can be any variable or object attribute having the type String and denoting a valid character set (e.g. UTF-8, ISO-8859-1, etc.). A list of supported character sets can be found on Charset Definitions. | |
| ||
Examples | This example transforms a string into a blob that contains ISO-8859-1 encoded characters.
NONE
|
It is only possible to transcode objects of type String to a Blob object. If you would like to transcode another base type like Integer or DateTime into a Blob object, you have first to convert this object into a String and then use the transcodeToBlob()
operation.