-
Notifications
You must be signed in to change notification settings - Fork 0
Email1
Giuseppe Cannella edited this page Jan 14, 2019
·
4 revisions
Type name | example |
---|---|
Email1 | abc@def.com |
import com.github.gekomad.regexcollection.Validate.validate
import com.github.gekomad.regexcollection.Email1
assert(validate[Email1]("sdsdsd@sdf.com") == Some("sdsdsd@sdf.com"))
assert(validate[Email1]("$sdsdsd@sdf.com") == None)
assert(validate[Email1](" sdsdsd@sdf.com") == None)
assert(validate[Email1]("abc,a@%.d") == None)