StrLength
Calculates the number of characters in the string.
Syntax
StrLength(stringVal)
Parameters
Parameter |
Type |
Description |
---|---|---|
stringVal |
string |
The string parameter |
Return
Returns the number of characters in the string.
Examples
Python
import nex
n = nex.StrLength("abcd")
NexScript
n = StrLength("abcd")