DQUOTE Function
Encloses a string in double quotes.
Syntax
DQUOTE(string)
Syntax Elements
string A DataBasic expression that evaluates to a string.
Examples
R = 'X.25 Emulation'
A = DQUOTE(R)
PRINT A
Prints "X.25 Emulation".
Y = DQUOTE("TESTING DQUOTE FUNCTION")
Assigns the string "TESTING DQUOTE FUNCTION" to variable Y.