Kairo Validation
Common validation patterns.
Installation
Section titled “Installation”Install kairo-validation.
dependencies { implementation("software.airborne.kairo:kairo-validation")}Email address validation
Section titled “Email address validation”The Validator.emailAddress regex follows the
WHATWG HTML Standard.
Validator.emailAddress.matches("jeff@example.com") // trueValidator.emailAddress.matches("not-an-email") // false