Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (defn valid-date? [date]
- (try (let [format (java.time.format.DateTimeFormatter/ofPattern "yyyy.MM.dd")]
- (java.time.LocalDate/parse date format)
- true)
- (catch java.time.format.DateTimeParseException e
- false)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement