[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: How to convert a String to an Array?

Peter Szinek

3/16/2007 12:28:00 PM

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.rubyra... :: Ruby and Web2.0 blog
http://s... :: Ruby web scraping framework
http://rubykitch... :: The indexed archive of all things Ruby