RubyCrazy wrote: > Is there a way to convert a String to an Array? I could only find the > following - > 'hello world'.scan(/./) And what's the problem with that? Or do you want a different result? Alternatively you can do 'hello world'.split(' ') or 'hello world'.split(/\s+/) if you want to split on any number of whitespace chars. If you want to split just on single spaces, your original solution is faster. Cheers, Peter __ http://www.rubyrailways.com :: Ruby and Web2.0 blog http://scrubyt.org :: Ruby web scraping framework http://rubykitchensink.ca/ :: The indexed archive of all things Ruby