-
Notifications
You must be signed in to change notification settings - Fork 0
Giuseppe Cannella edited this page Feb 19, 2020
·
10 revisions
Type name | example |
---|---|
[email protected] |
import com.github.gekomad.regexcollection.Validate.validate
import com.github.gekomad.regexcollection.Email
assert(validate[Email]("[email protected]") == Some("[email protected]"))
assert(validate[Email]("[email protected]") == Some("[email protected]"))
assert(validate[Email]("[email protected]") == Some("[email protected]"))
assert(validate[Email](" [email protected]") == None)
assert(validate[Email]("abc,a@%.d") == None)