Category:ProtoFlux:Strings:Characters: Difference between revisions

Category page
fill in descriptions
m fix link spaces
Line 1: Line 1:
{{Table ProtoFluxCategoryNodes
{{Table ProtoFluxCategoryNodes
|Char To String||Converts the [[Type:char|char]] to a [[Type:string|string]].
|CharToString||Converts the [[Type:char|char]] to a [[Type:string|string]].
|Concatenate Chars||Combines the [[Type:char|char]] into a string.
|ConcatenateChars||Combines the [[Type:char|char]] into a string.
|From UTF16||Converts the 16-bit codepoint to a [[Type:char|char]].
|FromUTF16||Converts the 16-bit codepoint to a [[Type:char|char]].
|From UTF32||Converts the UTF32 codepoint to a [[Type:string|string]].
|FromUTF32||Converts the UTF32 codepoint to a [[Type:string|string]].
|Get Character||Gets the [[Type:char|char]] at the index of input.
|GetCharacter||Gets the [[Type:char|char]] at the index of input.
|Is Control||Checks the [[Type:char|char]] if it is a control (non-printable) character.
|IsControl||Checks the [[Type:char|char]] if it is a control (non-printable) character.
|Is Digit||Checks the [[Type:char|char]] if it is a digit.
|IsDigit||Checks the [[Type:char|char]] if it is a digit.
|Is Letter||Checks the [[Type:char|char]] if it is a letter.
|IsLetter||Checks the [[Type:char|char]] if it is a letter.
|Is Letter Or Digit||Checks the [[Type:char|char]] if it is a letter or a digit.
|IsLetterOrDigit||Checks the [[Type:char|char]] if it is a letter or a digit.
|Is Lower||Checks the [[Type:char|char]] if it is a lower case letter.
|IsLower||Checks the [[Type:char|char]] if it is a lower case letter.
|Is Number|| Checks the [[Type:char|char]] if it is a number.
|IsNumber|| Checks the [[Type:char|char]] if it is a number.
|Is Punctuation|| Checks the [[Type:char|char]] if it is a punctuation character.
|IsPunctuation|| Checks the [[Type:char|char]] if it is a punctuation character.
|Is Separator||Checks the [[Type:char|char]] if it is a separator.
|IsSeparator||Checks the [[Type:char|char]] if it is a separator.
|Is Surrogate||Checks the [[Type:char|char]] if it is a surrogate.
|IsSurrogate||Checks the [[Type:char|char]] if it is a surrogate.
|Is Symbol||Checks the [[Type:char|char]] if it is a symbol.
|IsSymbol||Checks the [[Type:char|char]] if it is a symbol.
|Is Upper||Checks the [[Type:char|char]] if it is an upper case letter.
|IsUpper||Checks the [[Type:char|char]] if it is an upper case letter.
|Is White Space||Checks the [[Type:char|char]] if it is whitespace.
|IsWhiteSpace||Checks the [[Type:char|char]] if it is whitespace.
|String To UTF32||Converts the [[Type:char|char]] at an index to a UTF32 codepoint.
|StringToUTF32||Converts the [[Type:char|char]] at an index to a UTF32 codepoint.
|Surrogate Pair To UTF32||Converts the surrogate pair given to a UTF32 codepoint.
|SurrogatePairToUTF32||Converts the surrogate pair given to a UTF32 codepoint.
|To Lower (Character)||Makes the input character literal lower case.
|ToLower(Character)||Makes the input character literal lower case.
|To Upper (Character)||Makes the input character literal upper case.
|ToUpper(Character)||Makes the input character literal upper case.
|To UTF16||Converts a [[Type:char|char]] to its 16-bit codepoint.
|ToUTF16||Converts a [[Type:char|char]] to its 16-bit codepoint.
}}
}}
[[Category:ProtoFlux:Strings]]
[[Category:ProtoFlux:Strings]]

Revision as of 03:53, 25 August 2025

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(Character) Makes the input character literal lower case.
ToUpper(Character) Makes the input character literal upper case.
ToUTF16 Converts a char to its 16-bit codepoint.