Encloses a string in double quotes.
DQUOTE(string)
string A DataBasic expression that evaluates to a string.
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.