Reputation: 355
def names = ["myname", "yourname", "theirname", "allnames"]
String n = ""
names.each{
n += it + ","
}
println n
Output:
myname,yourname,theirname,allnames,
How do I get rid of the trailing comma?
Upvotes: 7
Views: 3100