Skip to content

Instantly share code, notes, and snippets.

@rotaliator
Created September 29, 2022 05:55
Show Gist options
  • Save rotaliator/4c5537b4a993259a033386e86d5e7607 to your computer and use it in GitHub Desktop.
Save rotaliator/4c5537b4a993259a033386e86d5e7607 to your computer and use it in GitHub Desktop.
Get current time as string with pattern
(defn now-with-pattern
"Returns current time as string with pattern"
[pattern]
(.format (java.time.LocalDateTime/now) (java.time.format.DateTimeFormatter/ofPattern pattern)))
(now-with-pattern "yyyyMMddHHmmss")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment