Tagged Questions

2
votes
4answers
351 views

How to get the day of year in ruby?

What is the best way to get the day of year of an specific date in Ruby? For example: 31/dec/2009 -> 365, 01/feb/2008 -> 32, etc
1
vote
3answers
123 views

Ruby: identify four-digit numbers and cut a text

so i'm dealing with a text (in string) containing many year numbers (four-digit), i'm trying to divide the text into segments each of which begins and ends with a year number (doesn't matter if the ...