Skip to content

Instantly share code, notes, and snippets.

@xnrghzjh
Created June 9, 2011 03:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save xnrghzjh/1015997 to your computer and use it in GitHub Desktop.
Save xnrghzjh/1015997 to your computer and use it in GitHub Desktop.
指定範囲内の日付をランダムに取得
@Grab(group='joda-time', module='joda-time', version='*')
import org.joda.time.*
//def rand_date(def fr, def to) { // java...
def rand_date = {fr,to-> // groovy!!
def d = new DateTime(fr)
def range = Days.daysBetween(d, new DateTime(to)).getDays() + 1
d.plusDays((Integer)Math.floor(Math.random() * range)).toString("yyyy-MM-dd")
}
5.times {
println rand_date("1978-09-30","2011-10-10")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment