Standard Library: String functions
[lines: str]
→ list
Splits string str
by line feed characters (0x0A, \n
) and returns a list of the results.
[lower: str]
→ string
Converts string str
to lowercase and returns the result.
[split: text; sep?]
→ list
Splits the input text by sep
into a list of strings. If sep
is omitted, splits into characters.
[seg: text; size]
→ list
Segments the input text into a list of strings of size
length.
[upper: str]
→ string
Converts string str
to uppercase and returns the result.