Category:ProtoFlux:Strings:Characters: Difference between revisions

Category page
m fix link spaces
m remove postfix links
 
Line 19: Line 19:
|StringToUTF32||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.
|SurrogatePairToUTF32||Converts the surrogate pair given to a UTF32 codepoint.
|SurrogatePairToUTF32||Converts the surrogate pair given to a UTF32 codepoint.
|ToLower(Character)||Makes the input character literal lower case.
|ToLower||Makes the input character literal lower case.
|ToUpper(Character)||Makes the input character literal upper case.
|ToUpper||Makes the input character literal upper case.
|ToUTF16||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]]

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.