GloopieBot (talk | contribs) Cleaning ProtoFlux Categories |
m remove postfix links |
||
(5 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{Table ProtoFluxCategoryNodes | {{Table ProtoFluxCategoryNodes | ||
| | |CharToString||Converts the [[Type:char|char]] to a [[Type:string|string]]. | ||
| | |ConcatenateChars||Combines the [[Type:char|char]] into a string. | ||
| | |FromUTF16||Converts the 16-bit codepoint to a [[Type:char|char]]. | ||
| | |FromUTF32||Converts the UTF32 codepoint to a [[Type:string|string]]. | ||
| | |GetCharacter||Gets the [[Type:char|char]] at the index of input. | ||
| | |IsControl||Checks the [[Type:char|char]] if it is a control (non-printable) character. | ||
| | |IsDigit||Checks the [[Type:char|char]] if it is a digit. | ||
| | |IsLetter||Checks the [[Type:char|char]] if it is a letter. | ||
| | |IsLetterOrDigit||Checks the [[Type:char|char]] if it is a letter or a digit. | ||
| | |IsLower||Checks the [[Type:char|char]] if it is a lower case letter. | ||
| | |IsNumber|| Checks the [[Type:char|char]] if it is a number. | ||
| | |IsPunctuation|| Checks the [[Type:char|char]] if it is a punctuation character. | ||
| | |IsSeparator||Checks the [[Type:char|char]] if it is a separator. | ||
| | |IsSurrogate||Checks the [[Type:char|char]] if it is a surrogate. | ||
| | |IsSymbol||Checks the [[Type:char|char]] if it is a symbol. | ||
| | |IsUpper||Checks the [[Type:char|char]] if it is an upper case letter. | ||
| | |IsWhiteSpace||Checks the [[Type:char|char]] if it is whitespace. | ||
| | |StringToUTF32||Converts the [[Type:char|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 [[Type:char|char]] to its 16-bit codepoint. | ||
}} | }} | ||
[[Category:ProtoFlux:Strings]] | [[Category:ProtoFlux:Strings]] |
Latest revision as of 04:42, 25 August 2025
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. |
Pages in category "ProtoFlux:Strings:Characters"
The following 22 pages are in this category, out of 22 total.