|
Table of Contents
strcatDescriptionConcatenate two strings. Function prototypestring strcat <string:str1> <string:str2> Arguments
Return valueA string containing the contents of str1 followed by the contents of str2. Example// create a new string for name
string MyName
// allow user to edit name
EditUI MyName "Please enter your name"
// add strings together using 'strcat' ("Hello " + MyName), and write to event log using 'echo'.
echo <zs:strcat "Hello " MyName>
… the output of which is written to the event log by echo as: Hello Aaron CommentsNone. See alsoExcept where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Share Alike 3.0 Unported
|