Update IsPhoneValidationRule.swift
Package to easy validate text just by passing validation rules!
To validate email text field, that is required and should be have at least 4 and at most 200 characters:
let validationRules: [ValidationRule] = [ NotEmptyRule(errorMessage: errorMessage), ShouldBeInRangeRule( lowerBoundErrorMessage: errorMessage, upperBoundErrorMessage: errorMessage, lowerBound: 4, upperBound: 200 ), RegexValidationRule(regexPattern: regexString, errorMessage: errorMessage) ] "someEmail@gmail.com".validate(with: validationRules)
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
NerdzValidation
Code Examples
To validate email text field, that is required and should be have at least 4 and at most 200 characters: