Rexx - length Command



This command is used to display the length of a string value.

Syntax

str.length  

Parameters

None

Return Value

The length of the string.

Example

/* Main program */ 
value ='null' 
say value.length

When we run the above program we will get the following result.

Output

4
rexx_netrexx.htm
Advertisements