strLen Function

Calculates the length of the specified string.


int strLen(str text)

Parameter

Description

text

The string to calculate the length of.

The length of the specified string.

  • strLen(“ABC”); //Returns the value 3.

  • strLen("ABCDEFGHIJ"); //Returns the value 10.

Community Additions

ADD
Show: