docs

Home All functions Categories

vuQuotes(Strg)

vuQuotes(*CSTRING), CSTRING

Description

Returns the specified string with leading and trailing quotation marks added.

Parameters

Parameter Data Type Description
Strg CSTRING The string you want to enclose in quotes.

Returns

A CSTRING containing the input string wrapped in quotation marks.

Example

Strg = 'Mary had a little lamb.'
QuotedStr = vuQuotes(Strg)
MESSAGE(QuotedStr)
! Result: "Mary had a little lamb."

Notes

Home All functions Categories