Concatenate |
Top Previous Next |
Syntax - Concatenate <variable name> <StringValue1> ... <StringValueX> Where: <variable name> is the user defined name that is assigned to the variable. <StringValueX> is a literal string or a variable that contains a literal string.
Description: This command is used to concatenate two or more literal strings into one literal string that is stored with the name of <variable name>. The literal strings and variables are concatenated from left to right in the sequence they are listed in this command.
Note: This commands works much like the LOG command, however rather than writing the results to a file, the results are stored as <variable name>.
Sample: The following statement uses Concatenate to combine two variables into one variable stored as FullAccountNo. Concatenate FullAccountNo AcctNo Unit
|