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
SQUOTE Function (DataBasic) (m618703+squote_f.htm)
Encloses a string in single quotes.
SQUOTE(string)
string A DataBasic expression that evaluates to a string.
L = "JOHN SMITH" M = SQUOTE(L)
Assigns the value 'JOHN SMITH' to variable M.
S = SQUOTE("THIS IS A TEST.") PRINT S
Prints the string 'THIS IS A TEST.'