From: Darin Ginther Date: 2009-02-03T04:40:10+09:00 Subject: Re: Noob question: while or for loop within a list list = "A,B,C,D" list.split(", ").each do |url| puts "URL IS:"+url end Output: URL IS:A,B,C,D Is using an array a "more correct" way to do it in Ruby? -- Posted via http://www.ruby-forum.com/.