I have the following array point[] with:
11,133,3032,144,412,44,43,44,444,54,22,44,11,163,480,344
And I am trying to split with a , every 4.
I would like something like:
point[0] = 11,133,3032,144
point[1] = 412,44,43,44
point[2] = 444,54,22,44
point[3] = 11,163,480,344
I alreday tried :
str.split(",", 4); but still have the comma at the end and problem of size.
How can I proceed?
Thanks!