Együd Csaba wrote:
> Hi,
> how can I determin the number of elements of an array? I saw function
> array_dims() which returns a string value representing the dimensions of the
> array. Is there a function which returns only the number of elements as an
> integer.
>
> -- Csaba
>
array_upper(arrayname,dimension) will return the number of elements in
the specified dimension of array arrayname.
Sven