Category:ProtoFlux:Strings:Characters

Category page
Nodes
Node Name Description
CharToString Converts the char to a string.
ConcatenateChars Combines the char into a string.
FromUTF16 Converts the 16-bit codepoint to a char.
FromUTF32 Converts the UTF32 codepoint to a string.
GetCharacter Gets the char at the index of input.
IsControl Checks the char if it is a control (non-printable) character.
IsDigit Checks the char if it is a digit.
IsLetter Checks the char if it is a letter.
IsLetterOrDigit Checks the char if it is a letter or a digit.
IsLower Checks the char if it is a lower case letter.
IsNumber Checks the char if it is a number.
IsPunctuation Checks the char if it is a punctuation character.
IsSeparator Checks the char if it is a separator.
IsSurrogate Checks the char if it is a surrogate.
IsSymbol Checks the char if it is a symbol.
IsUpper Checks the char if it is an upper case letter.
IsWhiteSpace Checks the char if it is whitespace.
StringToUTF32 Converts the char at an index to a UTF32 codepoint.
SurrogatePairToUTF32 Converts the surrogate pair given to a UTF32 codepoint.
ToLower Makes the input character literal lower case.
ToUpper Makes the input character literal upper case.
ToUTF16 Converts a char to its 16-bit codepoint.