Possible Duplicate:
The most sophisticated way for creating comma-separated Strings from a Collection/Array/List?
I have a Collection
I wanted to have a String object from the Collection Object with elements as Comma seperated.
For eg
Collection<String> = [1,2,3..]
String temp = "1,2,3,4....";