| Home | All functions | Categories |
vuQuotes(*CSTRING), CSTRING
Returns the specified string with leading and trailing quotation marks added.
| Parameter | Data Type | Description |
|---|---|---|
| Strg | CSTRING | The string you want to enclose in quotes. |
A CSTRING containing the input string wrapped in quotation marks.
Strg = 'Mary had a little lamb.'
QuotedStr = vuQuotes(Strg)
MESSAGE(QuotedStr)
! Result: "Mary had a little lamb."
| Home | All functions | Categories |