Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
Reality V15.0 ()
QUOTE Function (DataBasic MultiValue Compatibility) (m6187ai+quote_f.htm)
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.