Xbasic

CHAR_TO_BLOB Function

Syntax

OutputData as B = char_to_blob(C str )

Arguments

str

A character string. Character

Description

CHAR_TO_BLOB() returns the blob equivalent of the original character string.

Example

dim ch as C
dim chb as B
ch = "Rosemary"
chb = char_to_blob(ch)
chb   ->   Rosemary

See Also