Class Alphanumeric
Provides a set of alphanumeric constant and static fields that consists of both letters, numbers and other symbols (such as punctuation marks and mathematical symbols).
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public static class Alphanumeric
Fields
| Improve this Doc View SourceCaret
Circumflex accent / Caret character.
Declaration
public const string Caret = "^"
Field Value
Type | Description |
---|---|
String |
CaretChar
Circumflex accent / Caret character.
Declaration
public const char CaretChar = '^'
Field Value
Type | Description |
---|---|
Char |
CarriageReturn
Carriage-return character.
Declaration
public const string CarriageReturn = "\r"
Field Value
Type | Description |
---|---|
String |
CarriageReturnChar
Carriage-return character.
Declaration
public const char CarriageReturnChar = '\r'
Field Value
Type | Description |
---|---|
Char |
Hexadecimal
A representation of a hexadecimal character set consisting of the numbers 0 to 9 and the letters A to F.
Declaration
public const string Hexadecimal = "0123456789ABCDEF"
Field Value
Type | Description |
---|---|
String |
Letters
A case sensitive representation of an alphabetic character set consisting of the letters Aa to Zz.
Declaration
public const string Letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
Field Value
Type | Description |
---|---|
String |
LettersAndNumbers
A case sensitive representation of an alphanumeric character set consisting of the numbers 0 to 9 and the letters Aa to Zz.
Declaration
public const string LettersAndNumbers = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
Field Value
Type | Description |
---|---|
String |
Linefeed
Linefeed character.
Declaration
public const string Linefeed = "\n"
Field Value
Type | Description |
---|---|
String |
LinefeedChar
Linefeed character.
Declaration
public const char LinefeedChar = '\n'
Field Value
Type | Description |
---|---|
Char |
LowercaseLetters
A lowercase representation of an alphabetic character set consisting of the letters a to z.
Declaration
public const string LowercaseLetters = "abcdefghijklmnopqrstuvwxyz"
Field Value
Type | Description |
---|---|
String |
NetworkPathReference
A network-path reference, eg. two forward slashes (//).
Declaration
public const string NetworkPathReference = "//"
Field Value
Type | Description |
---|---|
String |
NewLine
Carriage-return/linefeed character combination.
Declaration
public const string NewLine = "\r\n"
Field Value
Type | Description |
---|---|
String |
Numbers
A representation of a numeric character set consisting of the numbers 0 to 9.
Declaration
public const string Numbers = "0123456789"
Field Value
Type | Description |
---|---|
String |
PunctuationMarks
A representation of the most common punctuation marks consisting of the characters !@#$%^&*()_-+=[{]};:<>|.,/?`~"'..
Declaration
public const string PunctuationMarks = "!@#$%^&*()_-+=[{]};:<>|.,/?`~\\\"'"
Field Value
Type | Description |
---|---|
String |
Tab
Tab character.
Declaration
public const string Tab = "\t"
Field Value
Type | Description |
---|---|
String |
TabChar
Tab character.
Declaration
public const char TabChar = '\t'
Field Value
Type | Description |
---|---|
Char |
UppercaseLetters
An uppercase representation of an alphabetic character set consisting of the letters A to Z.
Declaration
public const string UppercaseLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Field Value
Type | Description |
---|---|
String |
WhiteSpace
A representation of the most common whitespace characters.
Declaration
public const string WhiteSpace = "\t\n\v\f\r \u0085 \u2028\u2029 "
Field Value
Type | Description |
---|---|
String |