|
|
|
|
|
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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|