Strcat
From SA-MP Wiki
strcat
Note: This function name starts with a lowercase letter. |
Description:
This function concatenates (joins together) two strings into the destination string.
(dest[], const source[], maxlength = sizeof dest)
dest[] | The string to store the two concatenated strings in. |
const source[] | The source string. |
maxlength=sizeof dest | The maximum length of the destination. |
Return Values:
The length of the new destination string.
Example Usage:
new string[40] = "Hello"; strcat(string, " World!"); // The string is now 'Hello World!'
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- strcmp: Compare two strings to check if they are the same.
- strfind: Search for a string in another string.
- strtok: Get the next 'token' (word/parameter) in a string.
- strdel: Delete part of a string.
- strins: Insert text into a string.
- strlen: Get the length of a string.
- strmid: Extract part of a string into another string.
- strpack: Pack a string into a destination string.
- strval: Convert a string into an integer.