From: Daniel Brockman Date: 2005-07-27T11:29:54+09:00 Subject: Re: Help on array.to_s Hi Ober, > I am [converting an array to a string], however each > element is run into the next with no obvious way to make > it so each element has something I can use to delimit. See Array#join. [1,2,3].join(", ") #=> "1, 2, 3" [1,2,3] * ", " #=> "1, 2, 3" -- Daniel Brockman So really, we all have to ask ourselves: Am I waiting for RMS to do this? --TTN.