StrCpy

string StrCpy(string destString, string srcString[, number max])

Copies strString to destString. If max is specified, only max number of characters are copied. It returns a pointer to the destString.

Example
(var aString[40], strPtr)
StrCpy(aString "Hello World")

See Also: StrEnd, StrCat, StrLen, StrCmp