StrCat

string StrCat(string destString, string srcString)

Appends srcString to destString and returns a pointer to destString.

Example
(var aString[40], strPtr)
StrCpy(aString "Hello World")
StrCat(aString ", How Are You?") // aString will be "Hello World, How Are You?"

See Also: StrEnd, StrCmp, StrLen, StrCpy