Encloses a string in double quotes.
This function is provided for compatibility with other MultiValue systems. In particular, it provides the same functionality as the Reality DQUOTE function and can be used in D3, AP, PICK and R83 modes, when the standard DQUOTE function is not available.
QUOTE(string)
string A DataBasic expression that evaluates to a string.
The supplied string, enclosed in double quotes.
R = 'X.25 Emulation' A = QUOTE(R) PRINT A
Prints "X.25 Emulation".
Y = QUOTE("TESTING QUOTE FUNCTION")
Assigns the string "TESTING QUOTE FUNCTION" to variable Y.