DataBasic Reference > Statements and Intrinsic Functions > D > DQUOTE 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.

Reality V15.0 ()

DQUOTE Function (DataBasic) (m618703+dquote_f.htm)

To

Reality

Version

Topic

Submitted by

Company

Location

Email address

Comment

 

 

DQUOTE Function

Encloses a string in double quotes.

Syntax

DQUOTE(string)

Syntax Elements

string A DataBasic expression that evaluates to a string.

Examples

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.

RealityV15.0Comment on this topic