EmailAddressValidatorRegexPattern Property |
Gets or sets the regular expression to check syntax of e-mail addresses.
Namespace: MailBee.AddressCheckAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public string RegexPattern { get; set; }
Public Property RegexPattern As String
Get
Set
Property Value
Type:
StringThe string which represents the regular expression. The default value is
"^(([\w-]+['\.])+[\w-]+|([\w-]+))@((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\.([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])){1}|([a-zA-Z0-9]+[\w-]*\.)+[a-zA-Z]{2,9})$".
Exceptions Remarks This property is used in all modes of e-mail address verification
(because
RegexCheck is the minimum level of verification, and all other levels include it as well).
See Also