Method | Description | |
---|---|---|
Alphanumeric ( ) : |
Returns a pattern that matches a latin alphabet letter or an arabic digit.
|
|
AlphanumericUnderscore ( ) : |
Returns a pattern that matches a latin alphabet letter, an arabic digit or an underscore.
|
|
Ampersand ( ) : |
Returns a pattern that matches an ampersand.
|
|
Apostrophe ( ) : |
Returns a pattern that matches apostrophe.
|
|
ArabicDigit ( ) : |
Returns a pattern that matches an arabic digit.
|
|
Asterisk ( ) : |
Returns a pattern that matches an asterisk.
|
|
AtSign ( ) : |
Returns a pattern that matches an at sign.
|
|
Backslash ( ) : |
Returns a pattern that matches a backslash.
|
|
CarriageReturn ( ) : |
Returns a pattern that matches a carriage return.
|
|
Character ( AsciiChar value ) : |
Returns a pattern that matches specified Unicode character.
|
|
Character ( GeneralCategory category ) : |
Returns a pattern that matches a character from the specified Unicode category.
|
|
Character ( NamedBlock block ) : |
Returns a pattern that matches a character from the specified Unicode block.
|
|
Character ( char value ) : |
Returns a pattern that matches specified Unicode character.
|
|
Character ( string characters ) : |
Returns a pattern that matches any one of the specified characters.
|
|
CircumflexAccent ( ) : |
Returns a pattern that matches a circumflex accent.
|
|
Colon ( ) : |
Returns a pattern that matches a colon.
|
|
Comma ( ) : |
Returns a pattern that matches a comma.
|
|
CurlyBracket ( ) : |
Returns a pattern that matches left or right curly bracket.
|
|
Digit ( ) : |
Returns a pattern that matches a character from the digit character class.
|
|
Dollar ( ) : |
Returns a pattern that matches a dollar character.
|
|
Dot ( ) : |
Returns a pattern that matches a period.
|
|
EqualsSign ( ) : |
Returns a pattern that matches an equals sign.
|
|
ExclamationMark ( ) : |
Returns a pattern that matches exclamation mark.
|
|
GeneralCategory ( GeneralCategory category ) : |
Returns a pattern that matches a character from the specified Unicode category.
|
|
GraveAccent ( ) : |
Returns a pattern that matches a grave accent.
|
|
HexadecimalDigit ( ) : |
Returns a pattern that matches a hexadecimal digit.
|
|
Hyphen ( ) : |
Returns a pattern that matches a hyphen.
|
|
LatinLetter ( ) : |
Returns a pattern that matches a latin alphabet letter.
|
|
LeftAngleBracket ( ) : |
Returns a pattern that matches a left angle bracket (less-than sign).
|
|
LeftCurlyBracket ( ) : |
Returns a pattern that matches left curly bracket
|
|
LeftParenthesis ( ) : |
Returns a pattern that matches left parenthesis.
|
|
LeftSquareBracket ( ) : |
Returns a pattern that matches left square bracket.
|
|
Linefeed ( ) : |
Returns a pattern that matches a linefeed.
|
|
NamedBlock ( NamedBlock block ) : |
Returns a pattern that matches a character from the specified Unicode block.
|
|
NewLineChar ( ) : |
Returns a pattern that matches a new line character, i.e. a linefeed character or a carriage return character.
|
|
Not ( GeneralCategory category ) : |
Returns a pattern that matches a character that is not from the specified Unicode category.
|
|
Not ( NamedBlock block ) : |
Returns a pattern that matches a character that is not from the specified Unicode block.
|
|
NotDigit ( ) : |
Returns a pattern that matches a character that is not from the digit character class.
|
|
NotWhiteSpace ( ) : |
Returns a pattern that matches a character that is not from the digit character class.
|
|
NotWordChar ( ) : |
Returns a pattern that matches a character that is not from the word character class.
|
|
NumberSign ( ) : |
Returns a pattern that matches a number sign.
|
|
Parenthesis ( ) : |
Returns a pattern that matches left or right parenthesis.
|
|
Percent ( ) : |
Returns a pattern that matches a percent sign.
|
|
Plus ( ) : |
Returns a pattern that matches a plus sign.
|
|
QuestionMark ( ) : |
Returns a pattern that matches a question mark.
|
|
QuoteMark ( ) : |
Returns a pattern that matches a quotation mark.
|
|
Range ( char first, char last ) : |
Returns a pattern that matches any one character from the specified range.
|
|
RightAngleBracket ( ) : |
Returns a pattern that matches a right angle bracket (greater-than sign).
|
|
RightCurlyBracket ( ) : |
Returns a pattern that matches right curly bracket.
|
|
RightParenthesis ( ) : |
Returns a pattern that matches right parenthesis.
|
|
RightSquareBracket ( ) : |
Returns a pattern that matches right square bracket.
|
|
Semicolon ( ) : |
Returns a pattern that matches a semicolon.
|
|
Slash ( ) : |
Returns a pattern that matches a slash.
|
|
SlashOrBackslash ( ) : |
Returns a pattern that matches slash or backslash.
|
|
Space ( ) : |
Returns a pattern that matches a space character.
|
|
SquareBracket ( ) : |
Returns a pattern that matches left or right square bracket.
|
|
Tab ( ) : |
Returns a pattern that matches a tab.
|
|
Tilde ( ) : |
Returns a pattern that matches a tilde.
|
|
Underscore ( ) : |
Returns a pattern that matches an underscore.
|
|
VerticalBar ( ) : |
Returns a pattern that matches a vertical bar.
|
|
WhiteSpace ( ) : |
Returns a pattern that matches a character from the white-space character class.
|
|
WordChar ( ) : |
Returns a pattern that matches a character from the word character class.
|
Method | Description | |
---|---|---|
Character ( CharClass value ) : |
||
Character ( |
||
Character ( GeneralCategory category, bool negative ) : |
||
Character ( NamedBlock block, bool negative ) : |
public static Alphanumeric ( ) : |
||
return |
public static AlphanumericUnderscore ( ) : |
||
return |
public static CarriageReturn ( ) : |
||
return |
public static Character ( AsciiChar value ) : |
||
value | AsciiChar | An enumerated constant that identifies ASCII character. |
return |
public static Character ( GeneralCategory category ) : |
||
category | GeneralCategory | An enumerated constant that identifies Unicode category. |
return |
public static Character ( NamedBlock block ) : |
||
block | NamedBlock | An enumerated constant that identifies Unicode block. |
return |
public static Character ( char value ) : |
||
value | char | A Unicode character. |
return |
public static Character ( string characters ) : |
||
characters | string | A set of Unicode characters. |
return |
public static CircumflexAccent ( ) : |
||
return |
public static CurlyBracket ( ) : |
||
return |
public static ExclamationMark ( ) : |
||
return |
public static GeneralCategory ( GeneralCategory category ) : |
||
category | GeneralCategory | An enumerated constant that identifies Unicode category. |
return |
public static HexadecimalDigit ( ) : |
||
return |
public static LeftAngleBracket ( ) : |
||
return |
public static LeftCurlyBracket ( ) : |
||
return |
public static LeftParenthesis ( ) : |
||
return |
public static LeftSquareBracket ( ) : |
||
return |
public static NamedBlock ( NamedBlock block ) : |
||
block | NamedBlock | An enumerated constant that identifies Unicode block. |
return |
public static Not ( GeneralCategory category ) : |
||
category | GeneralCategory | An enumerated constant that identifies Unicode category. |
return |
public static Not ( NamedBlock block ) : |
||
block | NamedBlock | An enumerated constant that identifies Unicode block. |
return |
public static NotWhiteSpace ( ) : |
||
return |
public static QuestionMark ( ) : |
||
return |
public static Range ( char first, char last ) : |
||
first | char | The first character of the range. |
last | char | The last character of the range. |
return |
public static RightAngleBracket ( ) : |
||
return |
public static RightCurlyBracket ( ) : |
||
return |
public static RightParenthesis ( ) : |
||
return |
public static RightSquareBracket ( ) : |
||
return |
public static SlashOrBackslash ( ) : |
||
return |
public static SquareBracket ( ) : |
||
return |