vote up 2 vote down star

I think the answer is simply, "no you can't do that," but my thoughts are pretty much always wrong about Ruby.

I'm trying to do this in Ruby

city, state, zip = (0..2)

this results in city being a Range and the others being nil, which is not what I want. Is there any way to do this?

flag

60% accept rate

2 Answers

vote up 8 vote down check

With splat operator

city, state, zip = *(0..2)

With cast to array

city, state, zip = (0..2).to_a
link|flag
Perfect, thanks! – yar Jul 18 at 11:55
So what is the difference between splat and to_a? At least in this case, the result is always an array. – yar Jul 18 at 12:18
There's no difference in this case. In practical terms, the splat operator essentially replaces an Enumerable with its constituent elements. So if you write [*[1,2], *[3], 4], the result is [1,2,3,4]. – Chuck Jul 18 at 19:11
vote up 6 vote down

Yes

city, state, zip = *(0..2)
link|flag
Ooh I never thought of using the splat operator for assignment... – guns Jul 18 at 11:06
+1, thanks Dario... – yar Jul 18 at 17:57

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.