Dear Andryw, I guess you probably have a list of strings as input. So there will be an for loop iterating over that list. Then, each string is itself a list of characters. An inner loop might also iterate over the characters. You can then collect all characters together into a single string with the 'collect' feature of the for loop (see http://www.mozart-oz.org/documentation/loop/node2.html#label5).
It should be enough for you to figure out the whole stuff (a mere 5 lines of code). Cheers, raph 2009/6/10 Andryw Marques <[email protected]> > "how to concatenate strings in oz using necessarily two 'for' loops?" > > > -- > Andryw Marques Ramos, > > > Graduando no Curso de Ciência da Computação > Membro do Projeto Smart Analysis > Universidade Federal de Campina Grande > Brasil > > > _________________________________________________________________________________ > mozart-users mailing list > [email protected] > http://www.mozart-oz.org/mailman/listinfo/mozart-users >
_________________________________________________________________________________ mozart-users mailing list [email protected] http://www.mozart-oz.org/mailman/listinfo/mozart-users
