EncodeQP (open)
Encodes a string into a quoted-printable encoded string
Syntax
// Core function, no LOADLIB necessary
STRING FUNCTION EncodeQP(STRING text)
Parameters
STRING text
String to encode
Return value
STRING
The encoded string
Description
This function encodes a string to quoted-printable encoding. This encoding is often used in MIME-transported messages
Examples
// returns "K=F8benhavn"
STRING example1 := EncodeQP("København");