Show TOC

strCpy FunctionLocate this document in the navigation structure

Use

Purpose

Creates a copy of a given string.

Syntax

          
string strCpy (in string destString, in string sourceString)
            

Parameters

destString

Variable specifying the destination for the copy operation.

sourceString

Expression used as the source for the copy operation.

Description

This function copies a string value into a second location.

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

Return Value

Returns the content of destString.

Example
        
`if (toLower(strCpy(l, ~language)) == "en") ` English Version: `end`