DataBasic Reference > Statements and Intrinsic Functions > S > SQUOTE Function

Comment on this topic

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)

To

Reality

Version

Topic

Submitted by

Company

Location

Email address

Comment

 

 

SQUOTE Function

Encloses a string in single quotes.

Syntax

SQUOTE(string)

Syntax Elements

string A DataBasic expression that evaluates to a string.

Examples

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.'

RealityV15.1 (MoTW) Revision 7Comment on this topic