vote up 2 vote down star

I have some Ruby code which takes dates on the command line in the format:

-d 20080101,20080201..20080229,20080301

Which means I want to run for all dates between 20080201 and 20080229 (inclusive) and the other dates present in the list.

Given I can get the string 20080201..20080229 what is the best way to convert this to an instance of Range. Currently I am using eval, but it feels like there should be a better way.

@Purfideas I was kind of looking for a more general answer for converting any string of type int..int to a Range I guess.

flag

3 Answers

vote up 2 vote down check

But then just do

ends = '20080201..20080229'.split('..').map{|d| Integer(d)}
ends[0]..ends[1]

anyway I don't recommend eval, for security reasons

link|flag
What's the security reason involved with using eval? – Chris Bunch Sep 10 '08 at 8:23
cmd line input is "user input," so can you be this always gets executed by trusted people? this is the original SQL injection... ask that q in security ... it'll be your highest score ever. :) – Purfideas Sep 10 '08 at 17:15
vote up 2 vote down

Inject with no args works well for two element arrays:

rng='20080201..20080229'.split('..').inject { |s,e| s.to_i..e.to_i }

Of course, this can be made generic

class Range
  def self.from_ary(a)
    a.inject{|s,e| [s..e]}
  end
end

rng = Range.from_ary('20080201..20080229'.split('..').map{|s| s.to_i})
link|flag
Shouldn't that be inject{|s,e| (s.to_i .. e.to_i) } ? As written, it returns an Array with a range as a single element instead of a Range. – cpm Sep 11 '08 at 22:09
Commenting well after the fact, as I did rush to accept the answer, which when I looked at it, then intention made sense, but I admit when I tried it I found the same problem. – Chris Mayer Feb 5 at 0:03
vote up 2 vote down

assuming you want the range to iterate properly through months etc, try

require 'date'

ends = '20080201..20080229'.split('..').map{|d| Date.parse(d)}
(ends[0]..ends[1]).each do |d|
  p d.day
end
link|flag

Your Answer

Get an OpenID
or

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