length Function |
The length function returns the length of a given object.
length(ident);
ident | Required. An object to find the length of. |
The length function returns an integer. Given:
$arr = array.new("T","e","l","o","g","i","s"); PRINT length($arr); PRINT length("shapefile");
The above code snippet produces the following output:
7 9 |