Procedures: Strings
- Characters — Converts a String to a list of characters.
- Chr — Converts a Unicode code point to a string.
- CodePoints — Converts a string to a list of 32-bit Unicode code points.
- CodeUnit — Gets one UTF-8 code unit from a string.
- CodeUnits — Converts a string to a list of one-byte UTF-8 code units.
- Concat — Combines multiple strings into one, with an optional separator between them.
- IsDigit — Checks whether the first character of a string is a digit.
- Len — Returns the number of bytes (UTF-8 code units) in a String.
- NewLine — Returns the end-of-line character sequence.
- ParseNumber — Converts a String to a Number.
- Replace — Replaces all occurrences of a search phase in a string with a replacement phrase.
- Split — Splits a delimited string into a list of strings.
- StringFromCodePoints — Creates a string from a list of 32-bit Unicode code points.
- StringFromCodeUnits — Creates a string from a list of UTF-8 code units.