vote up 7 vote down star
1

I'm using this code to let the user enter in names while the program stores them in an array until they enter an empty string (they must press enter after each name):

people = []
info = 'a' # must fill variable with something, otherwise loop won't execute

while not info.empty?
    info = gets.chomp
    people += [Person.new(info)] if not info.empty?
end

This code would look much nicer in a do ... while loop:

people = []

do
    info = gets.chomp
    people += [Person.new(info)] if not info.empty?
while not info.empty?

In this code I don't have to assign info to some random string.

Unfortunately this type of loop doesn't seem to exist in Ruby. Can anybody suggest a better way of doing this?

flag

3 Answers

vote up 16 vote down

Like this:

people = []

begin
  info = gets.chomp
  people += [Person.new(info)] if not info.empty?
end while not info.empty?

Reference: http://archive.jvoorhis.com/articles/2007/06/13/ruby-hidden-do-while-loop

link|flag
heh, beaten to it. damn. – Blorgbeard Sep 25 '08 at 23:20
Won't this code add an empty string to the array if there is no input? – AndrewR Sep 25 '08 at 23:25
That was my mistake, that was how my code was before I quickly edited it. – jeremy Ruten Sep 25 '08 at 23:40
It's easy to make mistakes in the rush for rep - I had to edit my answer twice before it was right :) – AndrewR Sep 26 '08 at 1:54
vote up 8 vote down

How about this?

people = []

until (info = gets.chomp).empty?
  people += [Person.new(info)]
end
link|flag
Nice, much more elegant. – Blorgbeard Sep 26 '08 at 0:27
But this isn't "do ... while" loop. :) – Alexander Prokofyev Sep 26 '08 at 4:50
But it does the same thing in this case, unless I'm mistaken – Blorgbeard Sep 30 '08 at 7:25

Your Answer

Get an OpenID
or

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