Category:ProtoFlux:Strings:Characters: Difference between revisions

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

Latest revision as of 04:42, 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 Makes the input character literal lower case.
ToUpper Makes the input character literal upper case.
ToUTF16 Converts a char to its 16-bit codepoint.