-
Notifications
You must be signed in to change notification settings - Fork 7
formatted
Myles Megyesi edited this page Oct 6, 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"