-
Notifications
You must be signed in to change notification settings - Fork 7
formatted
mylesmegyesi edited this page Mar 3, 2012
·
3 revisions
(defvalidator user-validator
(:name :formatted {:pattern #"[A-Z]+" :message "is not capitalized"}))
(user-validator {:name "Dave"})
; {:name ("is not capitalized")}
(user-validator {:name "DAVE"})
; {}
-
:pattern
A Regex Pattern to match against. Default#""
.
"has the incorrect format"