ConCat


 

ConCat>string1,string2

 

Concatenates string1 with string2.  String1 must be a variable containing a string.  String2 can be a literal string or a variable.  The result is that string1 has string2 appended to it.

 

Abbreviation : Con

 

Example

 

Let>path=c:\temp\

ConCat>path,myfile.txt

 

In this example path becomes 'c:\temp\myfile.txt'