Skip to content

Latest commit

 

History

History
466 lines (452 loc) · 119 KB

File metadata and controls

466 lines (452 loc) · 119 KB

QuantifiedPattern Class

HomeConstructorsMethods

Namespace: Pihrtsoft.Text.RegularExpressions.Linq

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll


Represents a pattern that is quantified, i.e. quantifier is applied on it. This class is abstract.

public abstract class QuantifiedPattern : Pihrtsoft.Text.RegularExpressions.Linq.Pattern

Inheritance

ObjectPattern → QuantifiedPattern

Derived

Constructors

Constructor Summary
QuantifiedPattern() Initializes a new instance of the QuantifiedPattern class.

Methods

Method Summary
Alphanumeric() Appends a pattern that matches an alphanumeric character. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
Alphanumeric(Int32) Appends a pattern that matches a specified number of alphanumeric characters. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
AlphanumericLower() Appends a pattern that matches a lower-case alphanumeric character. Alphanumeric character is a latin alphabet lower-case letter or an arabic digit. (Inherited from Pattern)
AlphanumericLower(Int32) Appends a pattern that matches a specified number of lower-case alphanumeric characters. Alphanumeric character is a latin alphabet lower-case letter or an arabic digit. (Inherited from Pattern)
AlphanumericUnderscore() Appends a pattern that matches an alphanumeric character or an underscore. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
AlphanumericUnderscore(Int32) Appends a pattern that matches an alphanumeric character or an underscore specified number of times. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
AlphanumericUpper() Appends a pattern that matches an upper-case alphanumeric character. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit. (Inherited from Pattern)
AlphanumericUpper(Int32) Appends a pattern that matches a specified number of upper-case alphanumeric characters. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit. (Inherited from Pattern)
Ampersand() Appends a pattern that matches an ampersand. (Inherited from Pattern)
Ampersand(Int32) Appends a pattern that matches a specified number of ampersands. (Inherited from Pattern)
Any() Appends a pattern that matches any character. (Inherited from Pattern)
Any(Int32) Appends a pattern that matches any character specified number of times. (Inherited from Pattern)
Any(Object) Appends a noncapturing group with a specified content. (Inherited from Pattern)
Any(Object[]) Appends a pattern that matches any one of the patterns specified in the object array. (Inherited from Pattern)
AnyExceptLinefeed() Appends a pattern that matches any character except linefeed. (Inherited from Pattern)
AnyExceptLinefeed(Int32) Appends a pattern that matches any character except linefeed specified number of times. (Inherited from Pattern)
AnyNative() Appends a pattern that matches any character except linefeed (or any character if the RegexOptions.Singleline option is applied). (Inherited from Pattern)
AnyNative(Int32) Appends a pattern that matches any character except linefeed (or any character if the RegexOptions.Singleline option is applied) specified number of times. (Inherited from Pattern)
Apostrophe() Appends a pattern that matches an apostrophe. (Inherited from Pattern)
Apostrophe(Int32) Appends a pattern that matches a specified number of apostrophes. (Inherited from Pattern)
Append(Object) Appends a pattern that matches a specified content. (Inherited from Pattern)
AppendIf(Boolean, Object) If a condition is true, appends a pattern that matches a specified content. (Inherited from Pattern)
ArabicDigit() Appends a pattern that matches an arabic digit. (Inherited from Pattern)
ArabicDigit(Int32) Appends a pattern that matches a specified number of arabic digits. (Inherited from Pattern)
ArabicDigits() Appends a pattern that matches one or more arabic digits. (Inherited from Pattern)
Assert(Object) Appends a zero-width positive lookahead assertion with a specified content to be matched. (Inherited from Pattern)
Assert(Object[]) Appends a zero-width positive lookahead assertion that matches any one pattern specified in the object array. (Inherited from Pattern)
AssertBack(Object) Appends a zero-width positive lookbehind assertion with a specified content to be matched. (Inherited from Pattern)
AssertBack(Object[]) Appends a zero-width positive lookbehind assertion that matches any one pattern specified in the object array. (Inherited from Pattern)
Asterisk() Appends a pattern that matches an asterisk. (Inherited from Pattern)
Asterisk(Int32) Appends a pattern that matches a specified number of asterisks. (Inherited from Pattern)
AtSign() Appends a pattern that matches an at sign. (Inherited from Pattern)
AtSign(Int32) Appends a pattern that matches a specified number of at signs. (Inherited from Pattern)
Backslash() Appends a pattern that matches a backslash. (Inherited from Pattern)
Backslash(Int32) Appends a pattern that matches a specified number of backslashes. (Inherited from Pattern)
BalanceAngleBrackets(String) Appends a pattern that matches one or many left angle bracket balanced with one or many right angle bracket. Between the characters can be zero or many characters that are neither left nor right angle bracket. (Inherited from Pattern)
BalanceCurlyBrackets(String) Appends a pattern that matches one or many left curly bracket balanced with one or many right curly bracket. Between the characters can be zero or many characters that are neither left nor right curly bracket. (Inherited from Pattern)
BalanceChar(Char, Char, String) Appends a pattern that matches one or many opening characters balanced with one or many closing characters. Between the characters can be zero or many characters that are neither opening nor closing character. (Inherited from Pattern)
BalanceParentheses(String) Appends a pattern that matches one or many left parenthesis balanced with one or many right parenthesis. Between the characters can be zero or many characters that are neither left nor right parenthesis. (Inherited from Pattern)
BalanceSquareBrackets(String) Appends a pattern that matches one or many left square bracket balanced with one or many right square bracket. Between the characters can be zero or many characters that are neither left nor right square bracket. (Inherited from Pattern)
BalancingGroup(String, String, Object) Appends a balancing group with specified group names and a content. (Inherited from Pattern)
BalancingGroup(String, String, Object[]) Appends a balancing group with specified group names and a content. (Inherited from Pattern)
BeginInput() Appends a pattern that is matched at the beginning of the string. (Inherited from Pattern)
BeginInputOrLine() Appends a pattern that is matched at the beginning of the string (or line if the RegexOptions.Multiline option is applied). (Inherited from Pattern)
BeginLine() Appends a pattern that is matched at the beginning of the line. (Inherited from Pattern)
CarriageReturn() Appends a pattern that matches a carriage return. (Inherited from Pattern)
CarriageReturn(Int32) Appends a pattern that matches a specified number of carriage returns. (Inherited from Pattern)
CircumflexAccent() Appends a pattern that matches a circumflex accent. (Inherited from Pattern)
CircumflexAccent(Int32) Appends a pattern that matches a specified number of circumflex accents. (Inherited from Pattern)
Colon() Appends a pattern that matches a colon. (Inherited from Pattern)
Colon(Int32) Appends a pattern that matches a specified number of colons. (Inherited from Pattern)
Comma() Appends a pattern that matches a comma. (Inherited from Pattern)
Comma(Int32) Appends a pattern that matches a specified number of commas. (Inherited from Pattern)
Count(Int32, Int32, Object) Appends a pattern that matches specified pattern from minimal to maximum number of times. (Inherited from Pattern)
Count(Int32, Int32, Object, Object[]) Appends a pattern that matches any one specified pattern from minimal to maximum number of times. (Inherited from Pattern)
Count(Int32, Object) Appends a pattern that matches specified pattern specified number of times. (Inherited from Pattern)
Count(Int32, Object, Object[]) Appends a pattern that matches any one specified pattern specified number of times. (Inherited from Pattern)
CountFrom(Int32, Object) Appends a pattern that matches specified pattern at least specified number of times. (Inherited from Pattern)
CountFrom(Int32, Object, Object[]) Appends a pattern that matches any one specified pattern at least specified number of times. (Inherited from Pattern)
Crawl() Appends a pattern that matches any character zero or more times but as few times as possible. (Inherited from Pattern)
CrawlLine() Appends a pattern that matches any character except linefeed and carriage return zero or more times but as few times as possible. (Inherited from Pattern)
CrawlNative() Appends a pattern that matches any character except linefeed (or any character if the RegexOptions.Singleline option is applied) zero or more times but as few times as possible. (Inherited from Pattern)
CurlyBracket() Appends a pattern that matches left or right curly bracket. (Inherited from Pattern)
CurlyBracket(Int32) Appends a pattern that matches left or right curly bracket specified number of times. (Inherited from Pattern)
Digit() Appends a pattern that matches a digit character. (Inherited from Pattern)
Digit(Int32) Appends a pattern that matches a specified number of digit characters. (Inherited from Pattern)
Digits() Appends a pattern that matches one or more digit characters. (Inherited from Pattern)
DisableOptions(RegexOptions) Appends a pattern that disables specified options. (Inherited from Pattern)
DisableOptions(RegexOptions, Object) Appends a pattern that disables specified options to a specified pattern. (Inherited from Pattern)
DisableOptions(RegexOptions, Object[]) Appends a pattern that disables specified options to a specified pattern. (Inherited from Pattern)
DisallowGroup(Int32) Appends a pattern that requires previously defined group with a specified number not to be matched. Otherwise, a match will fail. (Inherited from Pattern)
DisallowGroup(String) Appends a pattern that requires previously defined group with a specified name not to be matched. Otherwise, a match will fail. (Inherited from Pattern)
Dollar() Appends a pattern that matches a dollar. (Inherited from Pattern)
Dollar(Int32) Appends a pattern that matches a specified number of dollars. (Inherited from Pattern)
Dot() Appends a pattern that matches a dot. (Inherited from Pattern)
Dot(Int32) Appends a pattern that matches a specified number of dots. (Inherited from Pattern)
EndInput() Appends a pattern that is matched at the end of the string. (Inherited from Pattern)
EndInputOrBeforeEndingLinefeed() Appends a pattern that is matched at the end of the string or before linefeed at the end of the string. (Inherited from Pattern)
EndInputOrLine() Appends a pattern that is matched at the end of the string (or line if the RegexOptions.Multiline option is applied). End of line is defined as the position before a linefeed. (Inherited from Pattern)
EndInputOrLine(Boolean) Appends a pattern that is matched (before carriage return) at the end of the string (or (before carriage return) at the end of line if the RegexOptions.Multiline option is applied). End of line is defined as the position before a linefeed. (Inherited from Pattern)
EndLine() Appends a pattern that is matched at the end of the string or line. End of line is defined as the position before a linefeed. (Inherited from Pattern)
EndLine(Boolean) Appends a pattern that is matched (before carriage return) at the end of the string or line. End of line is defined as the position before a linefeed. (Inherited from Pattern)
EnumerateCaptures(String) Searches the specified input string and returns an enumerable collection of captures. (Inherited from Pattern)
EnumerateCaptures(String, Int32) Searches the specified input string and returns an enumerable collection of captures from groups that have a specified number. (Inherited from Pattern)
EnumerateCaptures(String, Int32, RegexOptions) Searches the specified input string and returns an enumerable collection of captures from groups that have a specified number, using the specified matching options. (Inherited from Pattern)
EnumerateCaptures(String, RegexOptions) Searches the specified input string and returns an enumerable collection of captures, using the specified matching options. (Inherited from Pattern)
EnumerateCaptures(String, String) Searches the specified input string and returns an enumerable collection of captures from groups that have a specified name. (Inherited from Pattern)
EnumerateCaptures(String, String, RegexOptions) Searches the specified input string and returns an enumerable collection of captures from groups that have a specified name, using the specified matching options. (Inherited from Pattern)
EnumerateGroups(String) Searches the specified input string and returns an enumerable collection of groups. (Inherited from Pattern)
EnumerateGroups(String, Int32) Searches the specified input string and returns an enumerable collection of groups with a specified number. (Inherited from Pattern)
EnumerateGroups(String, Int32, RegexOptions) Searches the specified input string and returns an enumerable collection of groups with a specified number, using the specified matching options. (Inherited from Pattern)
EnumerateGroups(String, RegexOptions) Searches the specified input string and returns an enumerable collection of groups, using the specified matching options. (Inherited from Pattern)
EnumerateGroups(String, String) Searches the specified input string and returns an enumerable collection of groups with a specified name. (Inherited from Pattern)
EnumerateGroups(String, String, RegexOptions) Searches the specified input string and returns an enumerable collection of groups with a specified name, using the specified matching options. (Inherited from Pattern)
EnumerateMatches(String) Searches the specified input string and returns an enumerable collection of matches. (Inherited from Pattern)
EnumerateMatches(String, RegexOptions) Searches the specified input string and returns an enumerable collection of matches, using the specified matching options. (Inherited from Pattern)
EnumerateSuccessGroups(String) Searches the specified input string and returns an enumerable collection of groups that contain at least one capture. (Inherited from Pattern)
EnumerateSuccessGroups(String, Int32) Searches the specified input string and returns an enumerable collection of groups that have a specified number and contain at least one capture. (Inherited from Pattern)
EnumerateSuccessGroups(String, Int32, RegexOptions) Searches the specified input string and returns an enumerable collection of groups that have a specified number and contain at least one capture, using the specified matching options. (Inherited from Pattern)
EnumerateSuccessGroups(String, RegexOptions) Searches the specified input string and returns an enumerable collection of groups that contain at least one capture, using the specified matching options. (Inherited from Pattern)
EnumerateSuccessGroups(String, String) Searches the specified input string and returns an enumerable collection of groups that have a specified name and contain at least one capture. (Inherited from Pattern)
EnumerateSuccessGroups(String, String, RegexOptions) Searches the specified input string and returns an enumerable collection of groups that have a specified name and contain at least one capture, using the specified matching options. (Inherited from Pattern)
Equals(Object) (Inherited from Object)
EqualsSign() Appends a pattern that matches an equals sign. (Inherited from Pattern)
EqualsSign(Int32) Appends a pattern that matches a specified number of equals signs. (Inherited from Pattern)
ExclamationMark() Appends a pattern that matches an exclamation mark. (Inherited from Pattern)
ExclamationMark(Int32) Appends a pattern that matches a specified number of exclamation marks. (Inherited from Pattern)
GetHashCode() (Inherited from Object)
GetType() (Inherited from Object)
GraveAccent() Appends a pattern that matches a grave accent. (Inherited from Pattern)
GraveAccent(Int32) Appends a pattern that matches a specified number of grave accents. (Inherited from Pattern)
Group() Appends an empty numbered group. (Inherited from Pattern)
Group(Object) Appends a numbered group with a specified content. (Inherited from Pattern)
Group(Object[]) Appends a numbered group with a specified content. (Inherited from Pattern)
GroupReference(Int32) Appends a pattern that matches previously defined numbered group. (Inherited from Pattern)
GroupReference(String) Appends a pattern that matches previously defined named group. (Inherited from Pattern)
HexadecimalDigit() Appends a pattern that matches a hexadecimal digit. (Inherited from Pattern)
HexadecimalDigit(Int32) Appends a pattern that matches a specified number of hexadecimal digits. (Inherited from Pattern)
Hyphen() Appends a pattern that matches a hyphen. (Inherited from Pattern)
Hyphen(Int32) Appends a pattern that matches a specified number of hyphens. (Inherited from Pattern)
Character(AsciiChar) Appends a pattern that matches a specified character. (Inherited from Pattern)
Character(GeneralCategory) Appends a pattern that matches a character from a specified Unicode category. (Inherited from Pattern)
Character(Char) Appends a pattern that matches a specified character. (Inherited from Pattern)
Character(CharGrouping) Appends a pattern that matches a character from a specified CharGrouping. (Inherited from Pattern)
Character(NamedBlock) Appends a pattern that matches a character from a specified Unicode block. (Inherited from Pattern)
Character(String) Appends a pattern that matches a character from a specified String. (Inherited from Pattern)
Characters(AsciiChar) Appends a pattern that matches a specified character one or more times. (Inherited from Pattern)
Characters(GeneralCategory) Appends a pattern that matches one or more characters from a specified Unicode category. (Inherited from Pattern)
Characters(Char) Appends a pattern that matches a specified character one or more times. (Inherited from Pattern)
Characters(CharGrouping) Appends a pattern that matches one or more characters from a specified CharGrouping. (Inherited from Pattern)
Characters(NamedBlock) Appends a pattern that matches one or more characters from a specified Unicode block. (Inherited from Pattern)
Characters(String) Appends a pattern that matches one or more characters from a specified String. (Inherited from Pattern)
IfAssert(Object, Object) Appends an if construct with the specified content to assert and a content to match if the assertion succeeds. (Inherited from Pattern)
IfAssert(Object, Object, Object) Appends an if construct with the specified content to assert and a content to match if the assertion succeeds and a content to match if the assertion fails. (Inherited from Pattern)
IfGroup(Int32, Object) Appends an if construct with a content to match if the numbered group is matched. (Inherited from Pattern)
IfGroup(Int32, Object, Object) Appends an if construct with a content to match if the numbered group is matched and a content to match if the numbered group is not matched. (Inherited from Pattern)
IfGroup(String, Object) Appends an if construct with a content to match if the named group is matched. (Inherited from Pattern)
IfGroup(String, Object, Object) Appends an if construct with a content to match if the named group is matched and a content to match if the named group is not matched. (Inherited from Pattern)
IsMatch(String) Indicates whether the current instance finds a match in the specified input string. (Inherited from Pattern)
IsMatch(String, RegexOptions) Indicates whether the current instance finds a match in the specified input string, using the specified matching options. (Inherited from Pattern)
LatinLetter() Appends a pattern that matches a latin alphabet letter. (Inherited from Pattern)
LatinLetter(Int32) Appends a pattern that matches a specified number of latin alphabet letters. (Inherited from Pattern)
LatinLetterLower() Appends a pattern that matches a latin alphabet lower-case letter. (Inherited from Pattern)
LatinLetterLower(Int32) Appends a pattern that matches a specified number of latin alphabet lower-case letters. (Inherited from Pattern)
LatinLetters() Appends a pattern that matches one or more latin alphabet letter. (Inherited from Pattern)
LatinLetterUpper() Appends a pattern that matches a latin alphabet upper-case letter. (Inherited from Pattern)
LatinLetterUpper(Int32) Appends a pattern that matches a specified number of latin alphabet upper-case letters. (Inherited from Pattern)
Lazy() Specifies that the quantifier is lazy. Quantified pattern will be matched as few times as possible.
LeftAngleBracket() Appends a pattern that matches a left angle bracket (less-than sign). (Inherited from Pattern)
LeftAngleBracket(Int32) Appends a pattern that matches a specified number of left angle brackets (less-than signs). (Inherited from Pattern)
LeftCurlyBracket() Appends a pattern that matches a left curly bracket. (Inherited from Pattern)
LeftCurlyBracket(Int32) Appends a pattern that matches a specified number of left curly brackets. (Inherited from Pattern)
LeftParenthesis() Appends a pattern that matches a left parenthesis. (Inherited from Pattern)
LeftParenthesis(Int32) Appends a pattern that matches a specified number of left parentheses. (Inherited from Pattern)
LeftSquareBracket() Appends a pattern that matches a left square bracket. (Inherited from Pattern)
LeftSquareBracket(Int32) Appends a pattern that matches a specified number of left square brackets. (Inherited from Pattern)
LetterLower() Appends a pattern that matches a character from GeneralCategory.LetterLowercase. (Inherited from Pattern)
LetterLower(Int32) Appends a pattern that matches a specified number of letters from GeneralCategory.LetterLowercase. (Inherited from Pattern)
LetterUpper() Appends a pattern that matches a character from GeneralCategory.LetterUppercase. (Inherited from Pattern)
LetterUpper(Int32) Appends a pattern that matches a specified number of letters from GeneralCategory.LetterUppercase. (Inherited from Pattern)
Linefeed() Appends a pattern that matches a linefeed. (Inherited from Pattern)
Linefeed(Int32) Appends a pattern that matches a specified number of linefeeds. (Inherited from Pattern)
Match(String) Searches a specified input string for the first occurrence of the current instance. (Inherited from Pattern)
Match(String, RegexOptions) Searches a specified input string for the first occurrence of the current instance, using the specified matching options. (Inherited from Pattern)
Matches(String) Searches the specified input string for all matches. (Inherited from Pattern)
Matches(String, RegexOptions) Searches the specified input string for all matches, using the specified matching options. (Inherited from Pattern)
Maybe(Object) Appends a pattern that matches specified content zero or one time. (Inherited from Pattern)
Maybe(Object, Object[]) Appends a pattern that matches any one specified element zero or one time. (Inherited from Pattern)
MaybeCount(Int32, Object) Appends a pattern that matches specified pattern at most specified number of times. (Inherited from Pattern)
MaybeCount(Int32, Object, Object[]) Appends a pattern that matches any one specified pattern at most specified number of times. (Inherited from Pattern)
MaybeMany(Object) Appends a pattern that matches specified content zero or more times. (Inherited from Pattern)
MaybeMany(Object, Object[]) Appends a pattern that matches any one specified element zero or more times. (Inherited from Pattern)
MemberwiseClone() (Inherited from Object)
NamedGroup(String, Object) Appends a named group with a specified name and content. (Inherited from Pattern)
NamedGroup(String, Object[]) Appends a named group with a specified name and content. (Inherited from Pattern)
Never() Appends an empty negative lookahead assertion. This pattern is never matched. (Inherited from Pattern)
NewLine() Appends a pattern that matches a combination of an optional carriage return and a linefeed. (Inherited from Pattern)
NewLineChar() Appends a pattern that matches a newline character. Newline character is a carriage return or a linefeed. (Inherited from Pattern)
NewLineChar(Int32) Appends a pattern that matches a specified number of newline characters. Newline character is a carriage return or a linefeed. (Inherited from Pattern)
NonbacktrackingGroup(Object) Appends a nonbacktracking group with a specified content. (Inherited from Pattern)
NonbacktrackingGroup(Object[]) Appends a nonbacktracking group with a specified content. (Inherited from Pattern)
NoncapturingGroup(Object) Appends a noncapturing group with a specified content. (Inherited from Pattern)
NoncapturingGroup(Object[]) Appends a noncapturing group with a specified content. (Inherited from Pattern)
Not<TPattern>(INegateable<TPattern>) Appends a pattern that is a negation of the specified pattern. (Inherited from Pattern)
NotAlphanumeric() Appends a pattern that matches a character that is not an alphanumeric character. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
NotAlphanumeric(Int32) Appends a pattern that matches a character that is not an alphanumeric character specified number of times. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
NotAlphanumericLower() Appends a pattern that matches a character that is not a lower-case alphanumeric character. Alphanumeric character is a latin alphabet lower-case letter or an arabic digit. (Inherited from Pattern)
NotAlphanumericLower(Int32) Appends a pattern that matches a character that is not a lower-case alphanumeric character specified number of times. Alphanumeric character is a latin alphabet lower-case letter or an arabic digit. (Inherited from Pattern)
NotAlphanumericUnderscore() Appends a pattern that matches a character that is neither alphanumeric character nor underscore. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
NotAlphanumericUnderscore(Int32) Appends a pattern that matches a character that is neither alphanumeric character nor underscore specified number of times. Alphanumeric character is a latin alphabet letter or an arabic digit. (Inherited from Pattern)
NotAlphanumericUpper() Appends a pattern that matches a character that is not an upper-case alphanumeric character. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit. (Inherited from Pattern)
NotAlphanumericUpper(Int32) Appends a pattern that matches a character that is not an upper-case alphanumeric character specified number of times. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit. (Inherited from Pattern)
NotAmpersand() Appends a pattern that matches a character that is not an ampersand. (Inherited from Pattern)
NotAmpersand(Int32) Appends a pattern that matches a specified number of characters that are not an ampersand. (Inherited from Pattern)
NotApostrophe() Appends a pattern that matches a character that is not an apostrophe. (Inherited from Pattern)
NotApostrophe(Int32) Appends a pattern that matches a specified number of characters that are not an apostrophe. (Inherited from Pattern)
NotArabicDigit() Appends a pattern that matches a character that is not an arabic digit. (Inherited from Pattern)
NotArabicDigit(Int32) Appends a pattern that matches a character that is not an arabic digit specified number of times. (Inherited from Pattern)
NotAssert(Object) Appends a zero-width negative lookahead assertion with a specified content not to be matched. (Inherited from Pattern)
NotAssert(Object[]) Appends a zero-width negative lookahead assertion that matches none of patterns specified in the object array. (Inherited from Pattern)
NotAssertBack(Object) Appends a zero-width negative lookbehind assertion with a specified content not to be matched. (Inherited from Pattern)
NotAssertBack(Object[]) Appends a zero-width negative lookbehind assertion that matches none of patterns specified in the object array. (Inherited from Pattern)
NotAsterisk() Appends a pattern that matches a character that is not an asterisk. (Inherited from Pattern)
NotAsterisk(Int32) Appends a pattern that matches a specified number of characters that are not an asterisk. (Inherited from Pattern)
NotAtSign() Appends a pattern that matches a character that is not an at sign. (Inherited from Pattern)
NotAtSign(Int32) Appends a pattern that matches a specified number of characters that are not an at sign. (Inherited from Pattern)
NotBackslash() Appends a pattern that matches a character that is not a backslash. (Inherited from Pattern)
NotBackslash(Int32) Appends a pattern that matches a specified number of characters that are not a backslash. (Inherited from Pattern)
NotCarriageReturn() Appends a pattern that matches a character that is not a carriage return. (Inherited from Pattern)
NotCarriageReturn(Int32) Appends a pattern that matches a specified number of characters that are not a carriage return. (Inherited from Pattern)
NotCircumflexAccent() Appends a pattern that matches a character that is not a circumflex accent. (Inherited from Pattern)
NotCircumflexAccent(Int32) Appends a pattern that matches a specified number of characters that are not a circumflex accent. (Inherited from Pattern)
NotColon() Appends a pattern that matches a character that is not a colon. (Inherited from Pattern)
NotColon(Int32) Appends a pattern that matches a specified number of characters that are not a colon. (Inherited from Pattern)
NotComma() Appends a pattern that matches a character that is not a comma. (Inherited from Pattern)
NotComma(Int32) Appends a pattern that matches a specified number of characters that are not a comma. (Inherited from Pattern)
NotCurlyBracket() Appends a pattern that matches a character that is neither left nor right curly bracket. (Inherited from Pattern)
NotCurlyBracket(Int32) Appends a pattern that matches a character that is neither left nor right curly bracket specified number of times. (Inherited from Pattern)
NotDigit() Appends a pattern that matches a character that is not a digit character. (Inherited from Pattern)
NotDigit(Int32) Appends a pattern that matches a character that is not a digit character specified number of times. (Inherited from Pattern)
NotDigits() Appends a pattern that matches one or more characters that are not a digit character. (Inherited from Pattern)
NotDollar() Appends a pattern that matches a character that is not a dollar. (Inherited from Pattern)
NotDollar(Int32) Appends a pattern that matches a specified number of characters that are not a dollar. (Inherited from Pattern)
NotDot() Appends a pattern that matches a character that is not a dot. (Inherited from Pattern)
NotDot(Int32) Appends a pattern that matches a specified number of characters that are not a dot. (Inherited from Pattern)
NotEqualsSign() Appends a pattern that matches a character that is not an equals sign. (Inherited from Pattern)
NotEqualsSign(Int32) Appends a pattern that matches a specified number of characters that are not an equals sign. (Inherited from Pattern)
NotExclamationMark() Appends a pattern that matches a character that is not an exclamation mark. (Inherited from Pattern)
NotExclamationMark(Int32) Appends a pattern that matches a specified number of characters that are not an exclamation mark. (Inherited from Pattern)
NotGraveAccent() Appends a pattern that matches a character that is not a grave accent. (Inherited from Pattern)
NotGraveAccent(Int32) Appends a pattern that matches a specified number of characters that are not a grave accent. (Inherited from Pattern)
NotHexadecimalDigit() Appends a pattern that matches a character that is not a hexadecimal digit. (Inherited from Pattern)
NotHexadecimalDigit(Int32) Appends a pattern that matches a character that is not a hexadecimal digit specified number of times. (Inherited from Pattern)
NotHyphen() Appends a pattern that matches a character that is not a hyphen. (Inherited from Pattern)
NotHyphen(Int32) Appends a pattern that matches a specified number of characters that are not a hyphen. (Inherited from Pattern)
NotChar(AsciiChar) Appends a pattern that matches a character that is not a specified character. (Inherited from Pattern)
NotChar(GeneralCategory) Appends a pattern that matches a character that is not from a specified Unicode category. (Inherited from Pattern)
NotChar(Char) Appends a pattern that matches a character that is not a specified character. (Inherited from Pattern)
NotChar(Char[]) Appends a pattern that matches any character that is not contained in the specified characters. (Inherited from Pattern)
NotChar(CharGrouping) Appends a negative character group containing specified CharGrouping. (Inherited from Pattern)
NotChar(NamedBlock) Appends a pattern that matches a character that is not from a specified Unicode block. (Inherited from Pattern)
NotChar(String) Appends a pattern that matches any character that is not contained in the specified String. (Inherited from Pattern)
NotLatinLetter() Appends a pattern that matches a character that is not a latin alphabet letter. (Inherited from Pattern)
NotLatinLetter(Int32) Appends a pattern that matches a character that is not a latin alphabet letter specified number of times. (Inherited from Pattern)
NotLatinLetterLower() Appends a pattern that matches a character that is not a latin alphabet lower-case letter. (Inherited from Pattern)
NotLatinLetterLower(Int32) Appends a pattern that matches a character that is not a latin alphabet lower-case letter specified number of times. (Inherited from Pattern)
NotLatinLetterUpper() Appends a pattern that matches a character that is not a latin alphabet upper-case letter. (Inherited from Pattern)
NotLatinLetterUpper(Int32) Appends a pattern that matches a character that is not a latin alphabet upper-case letter specified number of times. (Inherited from Pattern)
NotLeftAngleBracket() Appends a pattern that matches a character that is not a left angle bracket (less-than sign). (Inherited from Pattern)
NotLeftAngleBracket(Int32) Appends a pattern that matches a specified number of characters that are not a left angle bracket (less-than sign). (Inherited from Pattern)
NotLeftCurlyBracket() Appends a pattern that matches a character that is not a left curly bracket. (Inherited from Pattern)
NotLeftCurlyBracket(Int32) Appends a pattern that matches a specified number of characters that are not a left curly bracket. (Inherited from Pattern)
NotLeftParenthesis() Appends a pattern that matches a character that is not a left parenthesis. (Inherited from Pattern)
NotLeftParenthesis(Int32) Appends a pattern that matches a specified number of characters that are not a left parenthesis. (Inherited from Pattern)
NotLeftSquareBracket() Appends a pattern that matches a character that is not a left square bracket. (Inherited from Pattern)
NotLeftSquareBracket(Int32) Appends a pattern that matches a specified number of characters that are not a left square bracket. (Inherited from Pattern)
NotLetterLower() Appends a pattern that matches a character that is not a character from GeneralCategory.LetterLowercase. (Inherited from Pattern)
NotLetterLower(Int32) Appends a pattern that matches a character that is not a character from GeneralCategory.LetterLowercase specified number of times. (Inherited from Pattern)
NotLetterUpper() Appends a pattern that matches a character that is not a character from GeneralCategory.LetterUppercase. (Inherited from Pattern)
NotLetterUpper(Int32) Appends a pattern that matches a character that is not a character from GeneralCategory.LetterUppercase specified number of times. (Inherited from Pattern)
NotLinefeed() Appends a pattern that matches a character that is not a linefeed. (Inherited from Pattern)
NotLinefeed(Int32) Appends a pattern that matches a specified number of characters that are not a linefeed. (Inherited from Pattern)
NotNewLineChar() Appends a pattern that matches a character that is not a newline character. Newline character is a carriage return or a linefeed. (Inherited from Pattern)
NotNewLineChar(Int32) Appends a pattern that matches a character that is not a newline character specified number of times. Newline character is a carriage return or a linefeed. (Inherited from Pattern)
NotNumberSign() Appends a pattern that matches a character that is not a number sign. (Inherited from Pattern)
NotNumberSign(Int32) Appends a pattern that matches a specified number of characters that are not a number sign. (Inherited from Pattern)
NotParenthesis() Appends a pattern that matches a character that is neither left nor right parenthesis. (Inherited from Pattern)
NotParenthesis(Int32) Appends a pattern that matches a character that is neither left nor right parenthesis specified number of times. (Inherited from Pattern)
NotPercent() Appends a pattern that matches a character that is not a percent. (Inherited from Pattern)
NotPercent(Int32) Appends a pattern that matches a specified number of characters that are not a percent. (Inherited from Pattern)
NotPlus() Appends a pattern that matches a character that is not a plus. (Inherited from Pattern)
NotPlus(Int32) Appends a pattern that matches a specified number of characters that are not a plus. (Inherited from Pattern)
NotQuestionMark() Appends a pattern that matches a character that is not a question mark. (Inherited from Pattern)
NotQuestionMark(Int32) Appends a pattern that matches a specified number of characters that are not a question mark. (Inherited from Pattern)
NotQuoteMark() Appends a pattern that matches a character that is not a quote mark. (Inherited from Pattern)
NotQuoteMark(Int32) Appends a pattern that matches a specified number of characters that are not a quote mark. (Inherited from Pattern)
NotRange(Char, Char) Appends a pattern that matches a character that is not in the specified range. (Inherited from Pattern)
NotRightAngleBracket() Appends a pattern that matches a character that is not an right angle bracket (greater-than sign). (Inherited from Pattern)
NotRightAngleBracket(Int32) Appends a pattern that matches a specified number of characters that are not a right angle bracket (greater-than sign). (Inherited from Pattern)
NotRightCurlyBracket() Appends a pattern that matches a character that is not a right curly bracket. (Inherited from Pattern)
NotRightCurlyBracket(Int32) Appends a pattern that matches a specified number of characters that are not a right curly bracket. (Inherited from Pattern)
NotRightParenthesis() Appends a pattern that matches a character that is not a right parenthesis. (Inherited from Pattern)
NotRightParenthesis(Int32) Appends a pattern that matches a specified number of characters that are not a right parenthesis. (Inherited from Pattern)
NotRightSquareBracket() Appends a pattern that matches a character that is not a right square bracket. (Inherited from Pattern)
NotRightSquareBracket(Int32) Appends a pattern that matches a specified number of characters that are not a right square bracket. (Inherited from Pattern)
NotSemicolon() Appends a pattern that matches a character that is not a semicolon. (Inherited from Pattern)
NotSemicolon(Int32) Appends a pattern that matches a specified number of characters that are not a semicolon. (Inherited from Pattern)
NotSlash() Appends a pattern that matches a character that is not a slash. (Inherited from Pattern)
NotSlash(Int32) Appends a pattern that matches a specified number of characters that are not a slash. (Inherited from Pattern)
NotSlashOrBackslash() Appends a pattern that matches a character that is not a slash or backslash. (Inherited from Pattern)
NotSlashOrBackslash(Int32) Appends a pattern that matches a specified number of characters that are not a slash or backslash (Inherited from Pattern)
NotSpace() Appends a pattern that matches a character that is not a space. (Inherited from Pattern)
NotSpace(Int32) Appends a pattern that matches a specified number of characters that are not a space. (Inherited from Pattern)
NotSquareBracket() Appends a pattern that matches a character that is neither left nor right square bracket. (Inherited from Pattern)
NotSquareBracket(Int32) Appends a pattern that matches a character that is neither left nor right square bracket specified number of times. (Inherited from Pattern)
NotTab() Appends a pattern that matches a character that is not a tab. (Inherited from Pattern)
NotTab(Int32) Appends a pattern that matches a specified number of characters that are not a tab. (Inherited from Pattern)
NotTilde() Appends a pattern that matches a character that is not a tilde. (Inherited from Pattern)
NotTilde(Int32) Appends a pattern that matches a specified number of characters that are not a tilde. (Inherited from Pattern)
NotUnderscore() Appends a pattern that matches a character that is not an underscore. (Inherited from Pattern)
NotUnderscore(Int32) Appends a pattern that matches a specified number of characters that are not an underscore. (Inherited from Pattern)
NotVerticalBar() Appends a pattern that matches a character that is not a vertical bar. (Inherited from Pattern)
NotVerticalBar(Int32) Appends a pattern that matches a specified number of characters that are not a vertical bar. (Inherited from Pattern)
NotWhiteSpace() Appends a pattern that matches a character that is not a white-space character. (Inherited from Pattern)
NotWhiteSpace(Int32) Appends a pattern that matches a character that is not a white-space character specified number of times. (Inherited from Pattern)
NotWhiteSpaces() Appends a pattern that matches one or more characters that are not a white-space character. (Inherited from Pattern)
NotWordBoundary() Appends a pattern that is not matched on a boundary between a word character and a non-word character. (Inherited from Pattern)
NotWordChar() Appends a pattern that matches a character that is not a word character. (Inherited from Pattern)
NotWordChar(Int32) Appends a pattern that matches a character that is not a word character specified number of times. (Inherited from Pattern)
NotWordChars() Appends a pattern that matches one or more characters that are not a word character. (Inherited from Pattern)
NumberSign() Appends a pattern that matches a number sign. (Inherited from Pattern)
NumberSign(Int32) Appends a pattern that matches a specified number of number signs. (Inherited from Pattern)
OneMany(Object) Appends a pattern that matches specified content one or more times. (Inherited from Pattern)
OneMany(Object, Object[]) Appends a pattern that matches any one specified element one or more times. (Inherited from Pattern)
Options(RegexOptions) Appends a pattern that applies specified options. (Inherited from Pattern)
Options(RegexOptions, Object) Appends a pattern that applies specified options to a specified pattern. (Inherited from Pattern)
Options(RegexOptions, Object[]) Appends a pattern that applies specified options to a specified pattern. (Inherited from Pattern)
Options(RegexOptions, RegexOptions) Appends a pattern that applies and disables specified options to a specified pattern. (Inherited from Pattern)
Options(RegexOptions, RegexOptions, Object) Appends a pattern that applies and disables specified options to a specified pattern. (Inherited from Pattern)
Options(RegexOptions, RegexOptions, Object[]) Appends a pattern that applies and disables specified options to a specified pattern. (Inherited from Pattern)
Or(Object) Appends a pattern that matches the current instance or a specified content. (Inherited from Pattern)
Parenthesis() Appends a pattern that matches left or right parenthesis. (Inherited from Pattern)
Parenthesis(Int32) Appends a pattern that matches left or right parenthesis specified number of times. (Inherited from Pattern)
Percent() Appends a pattern that matches a percent. (Inherited from Pattern)
Percent(Int32) Appends a pattern that matches a specified number of percents. (Inherited from Pattern)
Plus() Appends a pattern that matches a plus. (Inherited from Pattern)
Plus(Int32) Appends a pattern that matches a specified number of pluses. (Inherited from Pattern)
PreviousMatchEnd() Appends a pattern that is matched at the position where the previous match ended. (Inherited from Pattern)
QuestionMark() Appends a pattern that matches a question mark. (Inherited from Pattern)
QuestionMark(Int32) Appends a pattern that matches a specified number of question marks. (Inherited from Pattern)
QuoteMark() Appends a pattern that matches a quote mark. (Inherited from Pattern)
QuoteMark(Int32) Appends a pattern that matches a specified number of quote marks. (Inherited from Pattern)
Range(Char, Char) Appends a pattern that matches a character in the specified range. (Inherited from Pattern)
Replace(String) Within a specified input string, replaces strings that match the current instance with an empty string. (Inherited from Pattern)
Replace(String, MatchEvaluator) Within a specified input string, replaces all strings that match the current instance with a string returned by a MatchEvaluator delegate. (Inherited from Pattern)
Replace(String, MatchEvaluator, RegexOptions) Within a specified input string, replaces all strings that match the current instance with a string returned by a MatchEvaluator delegate. Specified options modify the matching operation. (Inherited from Pattern)
Replace(String, String) Within a specified input string, replaces all strings that match the current instance with a specified replacement string. (Inherited from Pattern)
Replace(String, String, RegexOptions) Within a specified input string, replaces all strings that match the current instance with a specified replacement string. Specified options modify the matching operation. (Inherited from Pattern)
RequireGroup(Int32) Appends a pattern that requires previously defined group with a specified number to be matched. Otherwise, a match will fail. (Inherited from Pattern)
RequireGroup(String) Appends a pattern that requires previously defined group with a specified name to be matched. Otherwise, a match will fail. (Inherited from Pattern)
RightAngleBracket() Appends a pattern that matches a right angle bracket (greater-than sign). (Inherited from Pattern)
RightAngleBracket(Int32) Appends a pattern that matches a specified number of right angle brackets (greater-than signs). (Inherited from Pattern)
RightCurlyBracket() Appends a pattern that matches a right curly bracket. (Inherited from Pattern)
RightCurlyBracket(Int32) Appends a pattern that matches a specified number of right curly brackets. (Inherited from Pattern)
RightParenthesis() Appends a pattern that matches a right parenthesis. (Inherited from Pattern)
RightParenthesis(Int32) Appends a pattern that matches a specified number of right parentheses. (Inherited from Pattern)
RightSquareBracket() Appends a pattern that matches a right square bracket. (Inherited from Pattern)
RightSquareBracket(Int32) Appends a pattern that matches a specified number of right square brackets. (Inherited from Pattern)
Semicolon() Appends a pattern that matches a semicolon. (Inherited from Pattern)
Semicolon(Int32) Appends a pattern that matches a specified number of semicolons. (Inherited from Pattern)
Slash() Appends a pattern that matches a slash. (Inherited from Pattern)
Slash(Int32) Appends a pattern that matches a specified number of slashes. (Inherited from Pattern)
SlashOrBackslash() Appends a pattern that matches a slash or a backslash. (Inherited from Pattern)
SlashOrBackslash(Int32) Appends a pattern that matches a specified number of characters that are slash or backslash. (Inherited from Pattern)
Space() Appends a pattern that matches a space. (Inherited from Pattern)
Space(Int32) Appends a pattern that matches a specified number of spaces. (Inherited from Pattern)
Spaces() Appends a pattern that matches one or more spaces. (Inherited from Pattern)
Split(String) Splits the specified input string at the positions defined by the current instance. (Inherited from Pattern)
Split(String, RegexOptions) Splits the specified input string at the positions defined by the current instance, using the specified matching options. (Inherited from Pattern)
SquareBracket() Appends a pattern that matches left or right square bracket. (Inherited from Pattern)
SquareBracket(Int32) Appends a pattern that matches left or right square bracket specified number of times. (Inherited from Pattern)
SurroundAngleBrackets() Appends a pattern that matches a text consisting of left and right angle bracket, allowing zero or more characters that are not a right angle bracket between the brackets. (Inherited from Pattern)
SurroundAngleBrackets(Object) Appends a pattern that matches specified pattern surrounded with left and right angle bracket. (Inherited from Pattern)
SurroundAngleBrackets(Object[]) Appends a pattern that matches specified content surrounded with left and right angle bracket. (Inherited from Pattern)
SurroundApostrophes() Appends a pattern that matches two apostrophes, allowing zero or more characters that are not an apostrophe between the apostrophes. (Inherited from Pattern)
SurroundApostrophes(Object) Appends a pattern that matches specified pattern surrounded with apostrophes. (Inherited from Pattern)
SurroundApostrophes(Object[]) Appends a pattern that matches specified content surrounded with apostrophes. (Inherited from Pattern)
SurroundCurlyBrackets() Appends a pattern that matches a text consisting of left and right curly bracket, allowing zero or more characters that are not a right curly bracket between the brackets. (Inherited from Pattern)
SurroundCurlyBrackets(Object) Appends a pattern that matches specified pattern surrounded with left and right curly bracket. (Inherited from Pattern)
SurroundCurlyBrackets(Object[]) Appends a pattern that matches specified content surrounded with left and right curly bracket. (Inherited from Pattern)
SurroundParentheses() Appends a pattern that matches a text consisting of a left parenthesis and a right parenthesis, allowing zero or more characters that are not a right parenthesis between the parentheses. (Inherited from Pattern)
SurroundParentheses(Object) Appends a pattern that matches specified pattern surrounded with left and right parenthesis. (Inherited from Pattern)
SurroundParentheses(Object[]) Appends a pattern that matches specified content surrounded with left and right parenthesis. (Inherited from Pattern)
SurroundQuoteMarks() Appends a pattern that matches two quotation marks, allowing zero or more characters that are not a quotation mark between the quotation marks. (Inherited from Pattern)
SurroundQuoteMarks(Object) Appends a pattern that matches specified pattern surrounded with quotation marks. (Inherited from Pattern)
SurroundQuoteMarks(Object[]) Appends a pattern that matches specified content surrounded with quotation marks. (Inherited from Pattern)
SurroundQuoteMarksOrApostrophes() Appends a pattern that matches two quotation marks (apostrophes), allowing zero or more characters that are not a quotation mark (apostrophe) between the quotation marks (apostrophes). (Inherited from Pattern)
SurroundQuoteMarksOrApostrophes(Object) Appends a pattern that matches specified pattern surrounded with quotation marks or apostrophes. (Inherited from Pattern)
SurroundQuoteMarksOrApostrophes(Object[]) Appends a pattern that matches specified content surrounded with quotation marks or apostrophes. (Inherited from Pattern)
SurroundSquareBrackets() Appends a pattern that matches a text consisting of left and right square bracket, allowing zero or more characters that are not a right square bracket between the brackets. (Inherited from Pattern)
SurroundSquareBrackets(Object) Appends a pattern that matches specified pattern surrounded with left and right square bracket. (Inherited from Pattern)
SurroundSquareBrackets(Object[]) Appends a pattern that matches specified content surrounded with left and right square bracket. (Inherited from Pattern)
SurroundWordBoundary(Object) Appends a pattern that matches spefified pattern surrounded with a word boundary. (Inherited from Pattern)
SurroundWordBoundary(Object[]) Appends a pattern that matches specified content surrounded with a word boundary. (Inherited from Pattern)
Tab() Appends a pattern that matches a tab. (Inherited from Pattern)
Tab(Int32) Appends a pattern that matches a specified number of tabs. (Inherited from Pattern)
Text(String) Appends a pattern that matches a specified text. (Inherited from Pattern)
Text(String, Boolean) Appends a pattern that matches a specified text, ignoring or honoring its case. (Inherited from Pattern)
Tilde() Appends a pattern that matches a tilde. (Inherited from Pattern)
Tilde(Int32) Appends a pattern that matches a specified number of tildes. (Inherited from Pattern)
ToRegex() Compiles a new instance of the Regex class for the current instance. (Inherited from Pattern)
ToRegex(RegexOptions) Compiles a new instance of the Regex class for the current instance, with options that modify the pattern. (Inherited from Pattern)
ToString() Constructs a pattern text that represents the current instance. (Inherited from Pattern)
ToString(PatternOptions) Constructs a pattern text that represents the current instance with options that modify the pattern. (Inherited from Pattern)
ToString(PatternSettings) Constructs a pattern text that represents the current instance with settings that modify the pattern. (Inherited from Pattern)
Underscore() Appends a pattern that matches an underscore. (Inherited from Pattern)
Underscore(Int32) Appends a pattern that matches a specified number of underscores. (Inherited from Pattern)
Until(String) Appends a pattern that matches zero or more characters until it reaches a specified value. (Inherited from Pattern)
UntilChar(AsciiChar) Appends a pattern that matches zero or more characters until it reaches a specified character. (Inherited from Pattern)
UntilChar(Char) Appends a pattern that matches zero or more characters until it reaches a specified character. (Inherited from Pattern)
UntilChar(CharGrouping) Appends a pattern that matches zero or more characters until it reaches a character that is matched by a specified CharGrouping. (Inherited from Pattern)
UntilChar(String) Appends a pattern that matches zero or more characters until it reaches any one of the specified characters. (Inherited from Pattern)
UntilNewLine() Appends a pattern that matches zero or more characters until it reaches a linefeed. (Inherited from Pattern)
VerticalBar() Appends a pattern that matches a vertical bar. (Inherited from Pattern)
VerticalBar(Int32) Appends a pattern that matches a specified number of vertical bars. (Inherited from Pattern)
WhileDigit() Appends a pattern that matches a digit character zero or more times. (Inherited from Pattern)
WhileChar(AsciiChar) Appends a pattern that matches a specified character zero or more times. (Inherited from Pattern)
WhileChar(Char) Appends a pattern that matches a specified character zero or more times. (Inherited from Pattern)
WhileChar(CharGrouping) Appends a pattern that matches a specified character zero or more times. (Inherited from Pattern)
WhileNot(String) Appends a pattern that matches zero or more characters that are not followed with a specified value. (Inherited from Pattern)
WhileNotDigit() Appends a pattern that matches zero or more characters that are not a digit. (Inherited from Pattern)
WhileNotChar(AsciiChar) Appends a pattern that matches zero or more characters that are not a specified character. (Inherited from Pattern)
WhileNotChar(Char) Appends a pattern that matches zero or more characters that are not a specified character. (Inherited from Pattern)
WhileNotChar(Char[]) Appends a pattern that matches zero or more characters that are not contained in the specified characters (Inherited from Pattern)
WhileNotChar(CharGrouping) Appends a pattern that matches zero or more characters that are not matched by a specified CharGrouping. (Inherited from Pattern)
WhileNotChar(String) Appends a pattern that matches zero or more characters that are not contained in the specified String. (Inherited from Pattern)
WhileNotNewLineChar() Appends a pattern that matches zero or more characters that are neither a carriage return nor a linefeed. (Inherited from Pattern)
WhileNotWhiteSpace() Appends a pattern that matches zero or more characters that are not a white-space. (Inherited from Pattern)
WhileNotWordChar() Appends a pattern that matches zero or more characters that are not a word character. (Inherited from Pattern)
WhileWhiteSpace() Appends a pattern that matches a white-space character zero or more times. (Inherited from Pattern)
WhileWhiteSpaceExceptNewLine() Appends a pattern that matches zero or more characters that are white-space characters but a neither carriage return nor a linefeed. (Inherited from Pattern)
WhileWordChar() Appends a pattern that matches a word character zero or more times. (Inherited from Pattern)
WhiteSpace() Appends a pattern that matches a white-space character. (Inherited from Pattern)
WhiteSpace(Int32) Appends a pattern that matches a specified number of white-space characters. (Inherited from Pattern)
WhiteSpaceExceptNewLine() Appends a pattern that matches a white-space character except carriage return and linefeed. (Inherited from Pattern)
WhiteSpaceExceptNewLine(Int32) Appends a pattern that matches a white-space character except carriage return and linefeed. The character has to be matched specified number of times. (Inherited from Pattern)
WhiteSpaces() Appends a pattern that matches one or more white-space characters. (Inherited from Pattern)
Word() Appends a pattern that matches one or more word characters surrounded with a word boundary. (Inherited from Pattern)
WordBoundary() Appends a pattern that is matched on a boundary between a word character and a non-word character. The pattern may be also matched on a word boundary at the beginning or end of the string. (Inherited from Pattern)
WordChar() Appends a pattern that matches a word character. (Inherited from Pattern)
WordChar(Int32) Appends a pattern that matches a specified number of word characters. (Inherited from Pattern)
WordChars() Appends a pattern that matches one or more word characters. (Inherited from Pattern)