Set string data to array.
If new data is set at the end of array, data is appended, otherwise it is overwritten.
array_setstring(hnd, str); array_setstring(hnd, str, pos);
hnd = array_new(); array_setstring(hnd, "PlanetCNC"); result = array_printstring(hnd); array_delete(hnd);
result:
9; PlanetCNC