Show / Hide Table of Contents

Class RegexPatterns

A static class that defines regular expression patterns.

Inheritance
System.Object
RegexPatterns
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Juhta.Net.Common
Assembly: Juhta.Net.dll
Syntax
public static class RegexPatterns

Fields

| Improve this Doc View Source

EmailAddress

Specifies a regular expression pattern for email addresses.

Declaration
public const string EmailAddress = "^[a-zA-Z0-9]+([_\\.-][a-zA-Z0-9]+)*@[a-zA-Z0-9]+([_\\.-][a-zA-Z0-9]+)*\\.[a-zA-Z]{2,4}$"
Field Value
Type Description
System.String
| Improve this Doc View Source

EmailAddressList

Specifies a regular expression pattern for email address lists.

Declaration
public const string EmailAddressList = "^[a-zA-Z0-9]+([_\\.-][a-zA-Z0-9]+)*@[a-zA-Z0-9]+([_\\.-][a-zA-Z0-9]+)*\\.[a-zA-Z]{2,4}(; ?[a-zA-Z0-9]+([_\\.-][a-zA-Z0-9]+)*@[a-zA-Z0-9]+([_\\.-][a-zA-Z0-9]+)*\\.[a-zA-Z]{2,4})*;?$"
Field Value
Type Description
System.String
| Improve this Doc View Source

FullClassName

Specifies a regular expression pattern for full class names.

Declaration
public const string FullClassName = "^[a-zA-Z0-9_]+(\\.[a-zA-Z0-9_]+)*$"
Field Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Copyright © 2017-2019 Juha Lähteenmäki
Generated by DocFX