I have an array composed by other array:
example my array with two arrays inside:
myArray = [(element1, element2, element3)],[(element4,element5,element6)] this is only an example to show that myArray have two arrays (these elements are string)
now I want write in a txt file these elements in this way:
element1#element2#element3;element4#element5#element6;
what is the code to create this string to write in txt file?