From: Szymon Drejewicz Date: 2005-02-03T21:10:40+09:00 Subject: Re: Working with strings... Try this: result = '' "some string".each_byte { |b| result << b << '|' } puts result -- Szy