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.
RealityV15.1Online Documentation (MoTW) Revision 7
DQUOTE Function (DataBasic) (m618703+dquote_f.htm)
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.