array_printstring()

Prints array data as string.

Syntax

array_printstring(hnd);

Parameters

hnd Array handle.
Return Value Array size. Return value is integer number.

Example

hnd = array_new();
array_setstring(hnd, "PlanetCNC");
result = array_printstring(hnd);
array_delete(hnd);

result:

9; PlanetCNC

See also

array_new, array_delete, array_setstring