Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to get a person's age from its birthday. now - birthday / 365 doesn't work, because some years have 366 days. I came up with the following code:

now = Date.today
year = now.year - birth_date.year

if (date+year.year) > now
  year = year - 1
end

Is there a more Ruby'ish way to calculate age?

share|improve this question
Duplicate of stackoverflow.com/questions/9/… – Groo May 4 '09 at 8:35
12  
@Groo: not really, that question is for C# – Spoike May 4 '09 at 8:38
3  
I like this question because it highlights the idea that there are "more Ruby" and "less Ruby" ways of doing things. It's important not only to be logically correct (which you could be by copying the C# answer), but also stylistically correct. And Adinochestva's answer makes good use of Ruby idiom. – James A. Rosen May 4 '09 at 22:07
1  
You should update the accepted answer to the answer by @philnash. His takes leap years into account. – Ryan Feb 25 at 19:50

12 Answers

up vote 18 down vote accepted

Use this:

def age
  now = Time.now.utc.to_date
  now.year - birthday.year - (birthday.to_date.change(:year => now.year) > now ? 1 : 0)
end
share|improve this answer
16  
This breaks if birthday.to_date is a leap year and the current year isn't. Not a big occurrence, but it's been causing me problems. – philnash Mar 1 '10 at 16:58
1  
I ran into the leap year problem too. Phil's answer worked for me though. Thanks Phil! – Blake Taylor May 4 '11 at 14:45
-1 for assuming ActiveStupor. – djanowski Aug 20 '12 at 21:55

I know I'm late to the party here, but the accepted answer will break horribly when trying to work out the age of someone born on the 29th February on a leap year. This is because the call to birthday.to_date.change(:year => now.year) creates an invalid date.

I used the following code (in a Rails project) instead:

def age(dob)
  now = Time.now.utc.to_date
  now.year - dob.year - ((now.month > dob.month || (now.month == dob.month && now.day >= dob.day)) ? 0 : 1)
end
share|improve this answer
7  
This seemed like the best solution on the page. – Jared Brown Feb 10 '11 at 1:56
Thanks, works great. – Mosselman Oct 18 '12 at 11:19
1  
Use this, not the check-marked one which can't handle leap years – babonk Jan 9 at 21:08
it works with now = Date.today too – andrej Jan 12 at 18:09
This worked great for me too, thanks! – teknull Apr 12 at 12:38

I've found this solution to work well and be readable for other people:

    age = Date.today.year - birthday.year
    age -= 1 if Date.today < birthday + age.years #for days before birthday

Easy and you don't need to worry about handling leap year and such.

share|improve this answer
2  
This requires Rails (for age.years), but could be made not to require Rails if you did something like Date.today.month < birthday.month or Date.today.month == birthday.month && Date.today.mday < birthday.mday. – Chuck May 4 '09 at 20:36
You're right -- sorry I assumed Rails as the question was tagged with it. But yes, easily modified for Ruby only. – PJ. May 6 '09 at 14:28
well thought out, easy to read and does the job... way better than the rest of the answers in this thread – Faisal Aug 12 '10 at 8:33
@pj..awesome answer..thanks..simply beautiful.. – rubyprince Mar 14 '11 at 11:33
I had chosen this one at first because it's the prettiest, but in production, it's frequently wrong, for reasons I don't fathom. The above one using Time.now.utc.to_date seems to be working better. – Kevin Nov 19 '11 at 21:23
show 2 more comments

The answers so far are kinda weird. Your original attempt was pretty close to the right way to do this:

birthday = DateTime.new(1900, 1, 1)
age = (DateTime.now - birthday) / 365.25 # or (1.year / 1.day)

You will get a fractional result, so feel free to convert the result to an integer with to_i. This is a better solution because it correctly treats the date difference as a time period measured in days (or seconds in the case of the related Time class) since the event. Then a simple division by the number of days in a year gives you the age. When calculating age in years this way, as long as you retain the original DOB value, no allowance needs to be made for leap years.

share|improve this answer
birthday = Time.mktime(1960,5,5) gives me out of range (epoch problems?) – Andrew Grimm May 5 '09 at 0:18
Yeah, go go epoch issues. I've updated the answer to resolve this. – Bob Aman May 6 '09 at 17:37
birthday = DateTime.now - 1.year gives me an age of 0. Unfortunately, dividing by 365.25 is a little imprecise. – Samir Talwar May 6 '09 at 18:06
You can't subtract 1.year like that from a DateTime object. 1.year resolves to the number of seconds in a year. DateTime objects operate based on days. For example: (DateTime.now - 365.25).strftime("%D") As for precision, if you're really just dealing with birthdays, it's plenty precise. Fact of the matter is, people are already quite imprecise when it comes to ages. We're born at a precise moment in time, but we don't usually give the exact hour, minute, and second of our birth when we write down our DOB. My argument here is that you really don't want to do this calculation manually. – Bob Aman May 6 '09 at 18:59
1  
This doesn't work for people born before 1900. For example Gertrude Baines is reported as having an age of 114.9979 on her birthday in 2009. – Andrew Grimm May 7 '09 at 3:24
show 8 more comments

One liner in Ruby on Rails (ActiveSupport). Handles leap years, leap seconds and all.

def age(birthday)
  (Time.now.to_s(:number).to_i - birthday.to_time.to_s(:number).to_i)/10e9.to_i
end

Logic from here - How do I calculate someone's age in C#?

Assuming both dates are in same timezone, if not call utc() before to_s() on both.

share|improve this answer
(Date.today.to_s(:number).to_i - birthday.to_date.to_s(:number).to_i)/1e4.to_i also works – nertzy Sep 30 '11 at 19:44
FWIW, but then my guarantee on "leap seconds" will be invalidated. ;-) (FWIW part 2, Ruby doesn't support "leap seconds" anyway). :-) – Vikrant Chaudhary Oct 1 '11 at 19:08
Not sure why I'm getting downvotes on this. Care to explain, dear downvoters? – Vikrant Chaudhary Feb 16 at 8:57

I like this one:

now = Date.current
age = now.year - dob.year
age -= 1 if now.yday < dob.yday
share|improve this answer
If you think this is a reasonable contender to a 3yo question that already has 10 other answers, you should include more reasons than personal preference. Otherwise, you won't get much attention – Jan Dvorak Feb 15 at 18:33
this breaks when one year is a leap year and another isn't – artm Feb 23 at 9:29

I like @philnash's solution, but the conditional could be compacter. What that boolean expression does is comparing [month, day] pairs using lexicographic order, so one could just use ruby's string comparison instead:

def age(dob)
  now = Date.today
  now.year - dob.year - (now.strftime('%m%d') < bd.strftime('%m%d') ? 1 : 0)
end
share|improve this answer

The following seems to work (but I'd appreciate it if it was checked).

age = now.year - bday.year
age -= 1 if now.to_a[7] < bday.to_a[7]
share|improve this answer
  def birthday(user)
    today = Date.today
    new = user.birthday.to_date.change(:year => today.year)
    user = user.birthday
    if Date.civil_to_jd(today.year, today.month, today.day) >= Date.civil_to_jd(new.year, new.month, new.day)
      age = today.year - user.year
    else
      age = (today.year - user.year) -1
    end
    age
  end
share|improve this answer
Time.now.year - self.birthdate.year - (birthdate.to_date.change(:year => Time.now.year) > Time.now.to_date ? 1 : 0)
share|improve this answer
(Date.today.strftime('%Y%m%d').to_i - dob.strftime('%Y%m%d').to_i) / 10000
share|improve this answer

I had to deal with this too, but for months. Became way too complicated. The simplest way I could think of was:

def month_number(today = Date.today)
  n = 0
  while (dob >> n+1) <= today
    n += 1
  end
  n
end

You could do the same with 12 months:

def age(today = Date.today)
  n = 0
  while (dob >> n+12) <= today
    n += 1
  end
  n
end

This will use Date class to increment the month, which will deal with 28 days and leap year etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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