====== strcat ======
===== Description =====
Concatenate two strings.
===== Function prototype =====
string strcat
===== Arguments =====
^ Name ^ Type ^ Comment ^
| //str1// | string | The first part of the concatenated string. |
| //str2// | string | The second part of the concatenated string. |
===== Return value =====
A 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
... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as:
Hello Aaron
===== Comments =====
None.
===== See also =====
* [[plugins:general:zeoscript:reference:functions:strlen]]