Show TOC

strCat FunctionLocate this document in the navigation structure

Use

Purpose

Appends one string to another string.

Syntax

          
string strCat (inout string destString, in string sourceString)
            

Parameters

destString

Variable specifying destination for append operation.

source String

Expression specifying source for append operation.

Description

This function concatenates strings and places the result in the destination string.

Writing `a = a & b` is equivalent to calling `strCat (a, b)`.

Return Value

Returns the content of destString.

Example
        
`if (toLower(strCat(~language, "glish")) == "english")` English Version: `end`