Wikifunctions:Catalogue/Character operations
Appearance
- Code point equality (Z888): tests whether two code-point realisations (as entered) have identical Unicode code-point representations
- Codepoint list to string (Z886): Converts a list of code points to a string
- String to codepoint list (Z868): menghasilkan daftar karakter dari untaian yang dimasukkan
- get first character of string (Z10901): returns the first character of a string
- get last character of string (Z11060): returns the last character of a string
- get Nth character of a string (Z14244): counting each codepoint as a character, counting from 1
- previous character (Z11564): returns the character one codepoint before the input character
- next character (Z11538): returns the character one codepoint above the input character
- first letter of strings: codepoints in ascending order (Z11523): First has a <= codepoint than the second. Only considers the first character of strings.
- in codepoint order (three characters) (Z11528): characters in codepoint order (each equal or ascending)
- chr of codepoint (Z11534): the chr() function in python
- unicode of first character (Z11515): Python ord() function. Return the natural number that represents the (single/first) character input.