Get WeekNumber

How can i get the week number of the LocalDate?

val formatter: DateTimeFormatter
    get() = DateTimeFormatter.ofPattern("dd.MM.yyyy", Locale.ENGLISH)

val mydate = LocalDate.parse("01.02.2018", formatter)  // I need to get the week-number of this date

Try to get it using WeekFields (Java Platform SE 8 )