strlen
strlen(t_string) =>x_length
Description
Returns the number of characters in a string.
Arguments
Value Returned
Examples
strlen( "abc" )
=> 3
strlen( "\007" )
=> 1 ; Backslash notation used.
Related Topics
Return to top
strlen(t_string) =>x_length
Returns the number of characters in a string.
strlen( "abc" )
=> 3
strlen( "\007" )
=> 1 ; Backslash notation used.