Hi everybody! I've got a problem!
I have a string array in this format:
array=['a'; 'a'; 'b'; 'c'; 'd'] %it's a simple version of course
I need that into a while cycle, this array can be modified by joing
each iteration two strings.
for instance, if I have to cluster the second and the third elements,
my array should become as follow:
array=['a'; 'ab'; 'c'; 'd']
and so on by clustering my elements.
I used strcat function and replaced in one of the two positions the
result and delete the other one, but it doesn't work.:-(
have u got some sugestions?
thx angelo