EncodeQP (open)
Encodes a string into a quoted-printable encoded string
Syntax
// Core function, no LOADLIB necessary
STRING FUNCTION EncodeQP(STRING text)Parameters
STRING textString to encode
Return value
STRINGThe 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");