DataBasic Reference > MultiValue Compatibility > Statements and Intrinsic Functions > QUOTE 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 ()

QUOTE Function (DataBasic MultiValue Compatibility) (m6187ai+quote_f.htm)

To

Reality

Version

Topic

Submitted by

Company

Location

Email address

Comment

 

 

QUOTE Function

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.

Syntax

QUOTE(string)

Syntax Elements

string A DataBasic expression that evaluates to a string.

Return Value

The supplied string, enclosed in double quotes.

Examples

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.

RealityV15.0Comment on this topic