|
|
|
|
|
Length (Function) In french: Taille Returns: - the length of a string, i.e., the number of characters in the string (including spaces and binary zeros).
- the size of a buffer, i.e., the number of bytes in the buffer.
Length("Quasimodo") // Returns 9 Length(" Quasimodo ") // Returns 11 Length("A" + Charact(0)) // Returns 2 Length("") // Returns 0 Length(" ") // Returns 1
Syntax
Getting the length of a string Hide the details
<Result> = Length(<Initial string>)
<Result>: Integer Number of characters in the string. <Initial string>: Character string Character string whose size will be calculated.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|