Strlen
From SA-MP Wiki
strlen
Note: This function name starts with a lowercase letter. |
Description:
Get the length of a string.
(const string[])
const string[] | The string to get the length of. |
Return Values:
The length of the string as an integer.
Example Usage:
new stringLength = strlen("This is an example string."); // stringLength is now set to 26
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.
- strmid: Extract part of a string into another string.
- strpack: Pack a string into a destination string.
- strval: Convert a string into an integer.
- strcat: Concatenate two strings into a destination reference.