-
Notifications
You must be signed in to change notification settings - Fork 94
strlen
Ryzom Core Wiki edited this page Jul 8, 2024
·
2 revisions
title: Strlen description: published: true date: 2023-03-16T23:12:17.031Z tags: editor: markdown dateCreated: 2023-03-16T22:30:18.910Z
The strlen function is used to get the length of a given string.
(length: f)strlen(string: s); // strlen_s_f
- string (string): The input string.
- length (float): The length of the input string.
(length)strlen($str);
This code gets the length of the string stored in the $str
variable.