Method | Description | |
---|---|---|
IsAnyOf ( this value, IEnumerable |
Determines if a character matches any character in a sent array.
|
|
IsInRange ( this value, char startOfRange, char endOfRange ) : bool |
Tests a character to determine if it is between a specified character range
|
|
IsNumeric ( this value ) : bool |
Tests a character to determine if is a common part of a numeric string (digits or one of "+ - , .")
|
|
IsWordTerminator ( this value ) : bool |
Tests a character to determine if it marks the end of a typical English word. Performs no testing for ASCII codes > 127.
|
|
RegexEncode ( this item ) : string |
Encodes the specified Unicode character in proper Regular Expression format.
|
public static IsAnyOf ( this value, IEnumerable |
||
value | this | The character to check. |
testChars | IEnumerable |
The array of characters to test. |
return | bool |
public static IsInRange ( this value, char startOfRange, char endOfRange ) : bool | ||
value | this | Input character to process. |
startOfRange | char | Beginning of range character. |
endOfRange | char | End of range character. |
return | bool |
public static IsNumeric ( this value ) : bool | ||
value | this | The character to check. |
return | bool |
public static IsWordTerminator ( this value ) : bool | ||
value | this | Input character to check. |
return | bool |
public static RegexEncode ( this item ) : string | ||
item | this | Unicode character to encode in Regular Expression format. |
return | string |