DecodeQP (open)

Decodes a quoted-printable encoded string.

Syntax

// Core function, no LOADLIB necessary

STRING FUNCTION DecodeQP(STRING text)

Parameters

STRING text

String to decode

Return value

STRING

The decoded string

Description

DecodeQP will decode a Quoted-Printable encoded string to its original value. This encoding is often used in MIME-transported messages

Examples

// returns "København"
STRING example1 := DecodeQP("K=F8benhavn");