vote up 4 vote down star

I know you Ruby people will laugh at my bad Ruby code:

i=0
for blah in blahs
    puts i.to_s + " " + blah
    i+=1
end

I want to use a for-each and a counter... is there a better way to do it?

Note: I don't know if blahs is an array or a hash, but having to do blahs[i] wouldn't make it much sexier. Also I'd like to know how to write i++ in Ruby.

Edit: Technically, Matt's and Squeegy's answer came in first, but I'm giving best answer to paradoja so spread around the points a bit on SO. Also his answer had the note about versions, which is still relevant (as long as my Ubuntu 8.04 is using Ruby 1.8.6).

flag

62% accept rate
There is no increment operator in Ruby. The n+=1 you wrote up there is the closest equivalent. It would have to be syntactic sugar for n+=1, which is itself shorthand for n=n+1. The idea of ++ was rejected because it hides the fact that you're reassigning the variable. rubyurl.com/Dsb1 – Chuck Feb 10 at 23:37
Nice! Thanks Chuck. I was forced to learn ++i and i++ in Java, so I just thought it would always be there. – yar Feb 11 at 0:33

6 Answers

vote up 1 vote down check

As people have said, you can use

each_with_index

but if you want indices with an iterator different to "each" (for example, if you want to map with an index or something like that) you can concatenate enumerators with the each_with_index method:

blahs.each_with_index.map {|blah, index| something(blah, index)}

This is something you can do from ruby 1.8.7 and 1.9.

link|flag
It's worth noting that this is new in 1.9. – Zach Langley Feb 10 at 20:09
Well spotted. Actually, it's also in 1.8.7, but it's something worth adding. – paradoja Feb 10 at 23:18
why am I on Ruby 1.8.6 if I just installed the whole thing on Ubuntu? Is 1.8.7 experimental/beta? – yar Feb 11 at 0:25
Which Ubuntu are you using? In Intrepid there's 1.8.7. It's the last stable version ( ruby-lang.org/en/downloads ). You may, however, monkeypatch ruby 1.8.6 to have the same behavior (see strictlyuntyped.com/2008/09/… ). – paradoja Feb 11 at 22:08
Hmmm... I ran sudo apt-get install ruby irb rdoc on my Ubuntu and it got 1.8.6. How should I be doing it? Running Ubuntu 8.04.1, not sure if that's Incredibly Intrepid or Hardly Jeronimo (that joke only works with the second half in Spanish, unfortunately). – yar Feb 16 at 21:15
show 2 more comments
vote up 1 vote down

As to your question about doing i++, well, you cannot do that in ruby. The i += 1 statement you had is exactly how you're supposed to do it.

link|flag
Cool, thanks, that was covered in the comments on the question... – yar Feb 16 at 21:09
vote up 1 vote down

The enumerating enumerable series is pretty nice.

link|flag
Nice, thanks for that and good luck on SO. – yar Feb 11 at 0:33
vote up 1 vote down

If blahs is a class that mixes in enumerable, you should be able to do this:

`blahs.each_with_index do |blah, i| puts("#{i} #{blah}") end

link|flag
vote up 12 vote down
[:a, :b, :c].each_with_index do |item, i|
  puts "index: #{i}, item: #{item}"
end

You can't do this with for. I usually like the more declarative call to each personally anyway. Partly because its easy to transition to other forms when you hits the limit of the for syntax.

link|flag
Nice, I see the point about the limits with the for syntax. I have to get used to blocks with multiple parameters. – yar Feb 10 at 20:46
vote up 5 vote down

Yes, it's collection.each to do loops, and then each_with_index to get the index.

You probably ought to read a Ruby book because this is fundamental Ruby and if you don't know it, you're going to be in big trouble (try: http://poignantguide.net/ruby/)

Taken from the ruby source code:

 hash = Hash.new
 %w(cat dog wombat).each_with_index {|item, index|
   hash[item] = index
 }
 hash   #=> {"cat"=>0, "wombat"=>2, "dog"=>1}
link|flag
Thanks for the link (excellent) and the answer. – yar Feb 10 at 22:15
No problem, glad to help. Didn't mean to be "mean" about the .each block -- these are fundamental ruby constructs and learning them on the fly will be really, really painful. :) Best to bite the bullet and spend a few hours reading! – Matt Rogish Feb 11 at 17:48
No worries, thanks for your answer, @Matt. – yar Feb 16 at 21:18

Your Answer

Get an OpenID
or

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