Table of Contents

Class Alphanumeric

Namespace
Cuemon
Assembly
Cuemon.Core.dll

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).

public static class Alphanumeric
Inheritance
Object
Alphanumeric

Fields

Caret

Circumflex accent / Caret character.

public const string Caret = "^"

Field Value

String

CaretChar

Circumflex accent / Caret character.

public const char CaretChar = '^'

Field Value

Char

CarriageReturn

Carriage-return character.

public const string CarriageReturn = "\r"

Field Value

String

CarriageReturnChar

Carriage-return character.

public const char CarriageReturnChar = '\r'

Field Value

Char

Hexadecimal

A representation of a hexadecimal character set consisting of the numbers 0 to 9 and the letters A to F.

public const string Hexadecimal = "0123456789ABCDEF"

Field Value

String

Letters

A case sensitive representation of an alphabetic character set consisting of the letters Aa to Zz.

public const string Letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"

Field Value

String

LettersAndNumbers

A case sensitive representation of an alphanumeric character set consisting of the numbers 0 to 9 and the letters Aa to Zz.

public const string LettersAndNumbers = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"

Field Value

String

Linefeed

Linefeed character.

public const string Linefeed = "\n"

Field Value

String

LinefeedChar

Linefeed character.

public const char LinefeedChar = '\n'

Field Value

Char

LowercaseLetters

A lowercase representation of an alphabetic character set consisting of the letters a to z.

public const string LowercaseLetters = "abcdefghijklmnopqrstuvwxyz"

Field Value

String

NetworkPathReference

A network-path reference, eg. two forward slashes (//).

public const string NetworkPathReference = "//"

Field Value

String

NewLine

Carriage-return/linefeed character combination.

public const string NewLine = "\r\n"

Field Value

String

Numbers

A representation of a numeric character set consisting of the numbers 0 to 9.

public const string Numbers = "0123456789"

Field Value

String

PunctuationMarks

A representation of the most common punctuation marks consisting of the characters !@#$%^&*()_-+=[{]};:<>|.,/?`~&quot;'..

public const string PunctuationMarks = "!@#$%^&*()_-+=[{]};:<>|.,/?`~\\\"'"

Field Value

String

Tab

Tab character.

public const string Tab = "\t"

Field Value

String

TabChar

Tab character.

public const char TabChar = '\t'

Field Value

Char

UppercaseLetters

An uppercase representation of an alphabetic character set consisting of the letters A to Z.

public const string UppercaseLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

Field Value

String

WhiteSpace

A representation of the most common whitespace characters.

public const string WhiteSpace = "\t\n\v\f\r \u0085             \u2028\u2029   "

Field Value

String