2024-08-18 13:51:25 -07:00
# Text
`Text` is Tomo's datatype to represent text. The name `Text` is used instead of
2024-09-02 20:56:08 -07:00
"string" because Tomo text represents immutable, normalized unicode data with
fast indexing that has an implementation that is efficient for concatenation.
2024-11-24 13:18:21 -08:00
These are _not_ C-style NUL-terminated character arrays. GNU libunistring is
2024-09-02 20:56:08 -07:00
used for full Unicode functionality (grapheme cluster counts, capitalization,
etc.).
2024-08-18 13:51:25 -07:00
2024-09-02 22:18:22 -07:00
## Implementation
2025-01-23 12:33:56 -08:00
Internally, Tomo text's implementation is based on [Raku/MoarVM's
strings](https://docs.raku.org/language/unicode) and [Boehm et al's
Cords](https://www.cs.tufts.edu/comp/150FP/archive/hans-boehm/ropes.pdf).
Strings store their grapheme cluster count and either a compact array of 8-bit
ASCII characters (for ASCII text), an array of 32-bit normal-form grapheme
cluster values (see below), or a (roughly) balanced binary tree concatenation
of two texts. The upside is that repeated concatenations are typically a
constant-time operation, which will occasionally require a small rebalancing
operation. Index-based text operations (like retrieving an arbitrary index or
slicing) are very fast: typically a constant-time operation for arbitrary
unicode text, but in the worst case scenario (text built from many
concatenations), `O(log(n))` time with very generous constant factors typically
amounting to only a handful of steps. Since concatenations use shared
substructures, they are very memory-efficient and can be used efficiently for
applications like implementing a text editor that stores a full edit history of
a large file's contents.
2024-09-02 22:18:22 -07:00
### Normal-Form Graphemes
In order to maintain compact storage, fast indexing, and fast slicing,
non-ASCII text is stored as 32-bit normal-form graphemes. A normal-form
grapheme is either a positive value representing a Unicode codepoint that
corresponds to a grapheme cluster (most Unicode letters used in natural
language fall into this category after normalization) or a negative value
representing an index into an internal array of "synthetic grapheme cluster
codepoints." Here are some examples:
- `A` is a normal codepoint that is also a grapheme cluster, so it would
be represented as the number `65`
- `ABC` is three separate grapheme clusters, one for `A` , one for `B` , one
for `C` .
- `Å` is also a single codepoint (`LATIN CAPITAL LETTER A WITH RING ABOVE`)
that is also a grapheme cluster, so it would be represented as the number
`197` .
- `家` (Japanese for "house") is a single codepoint (`CJK Unified
Ideograph-5BB6`) that is also a grapheme cluster, so it would be represented
as the number `23478`
-`👩🏽🚀` is a single graphical cluster, but it's made up of several
combining codepoints (`["WOMAN", "EMOJI MODIFIER FITZPATRICK TYPE-4", "ZERO
WITDH JOINER", "ROCKET"]`). Since this can't be represented with a single
codepoint, we must create a synthetic codepoint for it. If this was the `n` th
synthetic codepoint that we've found, then we would represent it with the
number `-n` , which can be used to look it up in a lookup table. The lookup
table holds the full sequence of codepoints used in the grapheme cluster.
2024-08-18 13:51:25 -07:00
## Syntax
Text has a flexible syntax designed to make it easy to hold values from
different languages without the need to have lots of escape sequences and
without using printf-style string formatting.
```
// Basic text:
str := "Hello world"
str2 := 'Also text'
str3 := `Backticks too`
```
2024-09-02 22:18:22 -07:00
### Line Splits
2024-08-18 13:51:25 -07:00
Long text can be split across multiple lines by having two or more dots at the
start of a new line on the same indentation level that started the text:
```
str := "This is a long
....... line that is split in code"
```
2024-09-02 22:18:22 -07:00
### Multi-line Text
2024-08-18 13:51:25 -07:00
Multi-line text has indented (i.e. at least one tab more than the start of the
text) text inside quotation marks. The leading and trailing newline are
ignored:
```
multi_line := "
This text has multiple lines.
Line two.
You can split a line
.... using two or more dots to make an elipsis.
Remember to include whitespace after the elipsis if desired.
Or don't if you're splitting a long word like supercalifragilisticexpia
....lidocious
This text is indented by one level in the text
"quotes" are ignored unless they're at the same indentation level as the
.... start of the text.
The end (no newline after this).
"
```
## Text Interpolations
Inside double quoted text, you can use a dollar sign (`$`) to insert an
expression that you want converted to text. This is called text interpolation:
```
// Interpolation:
my_var := 5
str := "My var is $my_var!"
// Equivalent to "My var is 5!"
// Using parentheses:
str := "Sum: $(1 + 2)"
// equivalent to "Sum: 3"
```
Single-quoted text does not have interpolations:
```
// No interpolation here:
str := 'Sum: $(1 + 2)'
```
2024-09-02 22:18:22 -07:00
### Text Escapes
2024-08-18 13:51:25 -07:00
Unlike other languages, backslash is *not* a special character inside of text.
For example, `"x\ny"` has the characters `x` , `\` , `n` , `y` , not a newline.
Instead, a series of character escapes act as complete text literals without
quotation marks:
```
newline := \n
crlf := \r\n
quote := \"
```
These text literals can be used as interpolation values with or without
parentheses, depending on which you find more readable:
```
two_lines := "one$(\n)two"
has_quotes := "some $\"quotes$\" here"
```
However, in general it is best practice to use multi-line text to avoid these problems:
```
str := "
This has
multiple lines and "quotes" too!
"
```
### Customizable `$`-Text
Sometimes you might need to use a lot of literal `$` s or quotation marks in
text. In such cases, you can use the more customizable form of text. The
customizable form lets you explicitly specify which character to use for
interpolation and which characters to use for delimiting the text.
The first character after the `$` is the custom interpolation character, which
can be any of the following symbols: `~!@#$%^&*+=\?` . If none of these
characters is used, the default interpolation character is `$` . Since this is
the default, you can disable interpolation altogether by using `$` here (i.e. a
double `$$` ).
The next thing in a customizable text is the character used to delimit the
text. The text delimiter can be any of the following symbols: `` "'`|/;([{< ``
If the text delimiter is one of `([{<` , then the text will continue until a
matching `)]}>` is found, not terminating unless the delimiters are balanced
(i.e. nested pairs of delimiters are considered part of the text).
Here are some examples:
```
$"Equivalent to normal text with dollar interps: $(1 + 2)"
$@"The same, but the AT symbol interpolates: @(1 + 2)"
$$"No interpolation here, $ is just a literal character"
$|This text is pipe-delimited, so it can have "quotes" and 'single quotes' and interpolates with dollar sign: $(1+2)|
$(This text is parens-delimited, so you can have (nested) parens without ending the text)
$=[This text is square-bracket delimited [which can be nested] and uses equals for interps: =(1 + 2)]
$@/look ma, regex literals!/
```
When text is delimited by matching pairs (`()`, `[]` , `{}` , or `<>` ), they
can only be closed by a matched closing character at the same indentation
level, ignoring nested pairs:
```
$$(Inside parens, you can have (nested ()) parens no problem)
$$"But only (), [], {}, and < > are matching pairs, you can't have nested quotes"
$$(
When indented, an unmatched ) won't close the text
An unmatched ( won't mess things up either
Only matching pairs on the same indentation level are counted:
)
$$(Multi-line text with nested (parens) and
.. line continuation)
```
As a special case, when you use the same character for interpolation and text
delimiting, no interpolations are allowed:
```
plain := $""This text has {no interpolations}!"
```
**Note:** Normal doubly quoted text with no dollar sign (e.g. `"foo"` ) are a
shorthand for `${}"foo"` . Singly quoted text with no dollar sign (e.g.
`'foo'` ) are shorthand for `$''foo'` .
## Operations
### Concatenation
2024-09-02 22:18:22 -07:00
Concatenation in the typical case is a fast operation: `"{x}{y}"` or `x ++ y` .
2024-08-18 13:51:25 -07:00
2024-09-02 22:18:22 -07:00
Because text concatenation is typically fast, there is no need for a separate
"string builder" class in the language and no need to use an array of text
fragments.
2024-08-18 13:51:25 -07:00
### Text Length
2024-09-02 20:56:08 -07:00
Text length gives you the number of grapheme clusters in the text, according to
the unicode standard. This corresponds to what you would intuitively think of
when you think of "letters" in a string. If you have text with an emoji that has
several joining modifiers attached to it, that text has a length of 1.
2024-08-18 13:51:25 -07:00
2024-09-02 20:56:08 -07:00
```tomo
>> "hello".length
= 5
>> "👩🏽🚀".length
= 1
```
2024-08-18 13:51:25 -07:00
### Iteration
2024-09-02 20:56:08 -07:00
Iteration is *not* supported for text. It is rarely ever the case that you will
need to iterate over text, but if you do, you can iterate over the length of
the text and retrieve 1-wide slices. Alternatively, you can split the text into
its constituent grapheme clusters with `text:split()` and iterate over those.
2024-08-18 13:51:25 -07:00
### Equality, Comparison, and Hashing
All text is compared and hashed using unicode normalization. Unicode provides
several different ways to represent the same text. For example, the single
codepoint `U+E9` (latin small e with accent) is rendered the same as the two
code points `U+65 U+301` (latin small e, acute combining accent) and has an
equivalent linguistic meaning. These are simply different ways to represent the
same "letter." In order to make it easy to write correct code that takes this
into account, Tomo uses unicode normalization for all text comparisons and
hashing. Normalization does the equivalent of converting text to a canonical
form before performing comparisons or hashing. This means that if a table is
created that has text with the codepoint `U+E9` as a key, then a lookup with
the same text but with `U+65 U+301` instead of `U+E9` will still succeed in
finding the value because the two texts are equivalent under normalization.
2025-03-04 21:11:18 -08:00
## Text Functions
2024-08-18 13:51:25 -07:00
2025-03-04 21:22:40 -08:00
- [`func as_c_string(text: Text -> CString)` ](#as_c_string )
- [`func at(text: Text, index: Int -> Text)` ](#at )
- [`func by_line(text: Text -> func(->Text?))` ](#by_line )
2025-04-01 11:05:10 -07:00
- [`func by_split(text: Text, delimiter: Text = "" -> func(->Text?))` ](#by_split )
- [`func by_split_any(text: Text, delimiters: Text = " $\t\r\n" -> func(->Text?))` ](#by_split_any )
2025-03-04 21:22:40 -08:00
- [`func bytes(text: Text -> [Byte])`](#bytes)
2025-03-07 13:19:12 -08:00
- [`func caseless_equals(a: Text, b:Text, language:Text = "C" -> Bool)` ](#caseless_equals )
2025-03-04 21:22:40 -08:00
- [`func codepoint_names(text: Text -> [Text])`](#codepoint_names)
- [`func ends_with(text: Text, suffix: Text -> Bool)` ](#ends_with )
- [`func from(text: Text, first: Int -> Text)` ](#from )
2025-04-01 11:05:10 -07:00
- [`func from_bytes(codepoints: [Int32] -> [Text])`](#from_bytes)
2025-03-04 21:22:40 -08:00
- [`func from_c_string(str: CString -> Text)` ](#from_c_string )
- [`func from_codepoint_names(codepoint_names: [Text] -> [Text])`](#from_codepoint_names)
2025-04-01 11:05:10 -07:00
- [`func from_codepoints(codepoints: [Int32] -> [Text])`](#from_codepoints)
- [`func has(text: Text, target: Text -> Bool)` ](#has )
2025-03-04 21:22:40 -08:00
- [`func join(glue: Text, pieces: [Text] -> Text)`](#join)
2025-04-01 11:05:10 -07:00
- [`func split(text: Text, delimiter: Text = "" -> [Text])`](#split)
- [`func split_any(text: Text, delimiters: Text = " $\t\r\n" -> [Text])`](#split_any)
2025-03-17 20:42:00 -07:00
- [`func middle_pad(text: Text, width: Int, pad: Text = " ", language: Text = "C" -> Text)` ](#middle_pad )
- [`func left_pad(text: Text, width: Int, pad: Text = " ", language: Text = "C" -> Text)` ](#left_pad )
2025-04-01 11:05:10 -07:00
- [`func lines(text: Text -> [Text])`](#lines)
2025-03-07 13:19:12 -08:00
- [`func lower(text: Text, language: Text = "C" -> Text)` ](#lower )
2025-03-30 23:34:44 -07:00
- [`func quoted(text: Text, color: Bool = no, quotation_mark: Text = '"' -> Text)` ](#quoted )
2025-03-04 21:22:40 -08:00
- [`func repeat(text: Text, count:Int -> Text)` ](#repeat )
2025-04-01 11:05:10 -07:00
- [`func replace(text: Text, target: Text, replacement: Text -> Text)` ](#replace )
2025-03-04 21:22:40 -08:00
- [`func reversed(text: Text -> Text)` ](#reversed )
2025-03-17 20:42:00 -07:00
- [`func right_pad(text: Text, width: Int, pad: Text = " ", language: Text = "C" -> Text)` ](#right_pad )
2025-03-04 21:22:40 -08:00
- [`func slice(text: Text, from: Int = 1, to: Int = -1 -> Text)` ](#slice )
- [`func starts_with(text: Text, prefix: Text -> Bool)` ](#starts_with )
2025-03-07 13:19:12 -08:00
- [`func title(text: Text, language: Text = "C" -> Text)` ](#title )
2025-03-04 21:22:40 -08:00
- [`func to(text: Text, last: Int -> Text)` ](#to )
2025-04-02 13:14:20 -07:00
- [`func translate(translations:{Text=Text} -> Text)` ](#translate )
2025-04-01 11:05:10 -07:00
- [`func trim(text: Text, to_trim: Text = " $\t\r\n", left: Bool = yes, right: Bool = yes -> Text)` ](#trim )
2025-03-07 13:19:12 -08:00
- [`func upper(text: Text, language: Text "C" -> Text)` ](#upper )
2025-03-04 21:22:40 -08:00
- [`func utf32_codepoints(text: Text -> [Int32])`](#utf32_codepoints)
2025-03-17 20:42:00 -07:00
- [`func width(text: Text -> Int)` ](#width )
2025-04-01 11:05:10 -07:00
- [`func without_prefix(text: Text, prefix: Text -> Text)` ](#without_prefix )
- [`func without_suffix(text: Text, suffix: Text -> Text)` ](#without_suffix )
----------------
2025-03-04 21:21:30 -08:00
2025-03-04 21:11:18 -08:00
### `as_c_string`
2024-08-18 13:51:25 -07:00
Converts a `Text` value to a C-style string.
2024-08-18 15:23:32 -07:00
```tomo
2024-10-09 10:48:45 -07:00
func as_c_string(text: Text -> CString)
2024-08-18 13:51:25 -07:00
```
- `text` : The text to be converted to a C-style string.
**Returns:**
A C-style string (`CString`) representing the text.
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-08-18 13:51:25 -07:00
>> "Hello":as_c_string()
= CString("Hello")
```
---
2025-03-04 21:11:18 -08:00
### `at`
2024-11-19 10:27:27 -08:00
Get the graphical cluster at a given index. This is similar to `str[i]` with
ASCII text, but has more correct behavior for unicode text.
```tomo
func at(text: Text, index: Int -> Text)
```
- `text` : The text from which to get a cluster.
- `index` : The index of the graphical cluster (1-indexed).
**Returns:**
A `Text` with the single graphical cluster at the given index. Note: negative
indices are counted from the back of the text, so `-1` means the last cluster,
`-2` means the second-to-last, and so on.
**Example:**
```tomo
>> "Amélie":at(3)
= "é"
```
---
2025-03-04 21:11:18 -08:00
### `by_line`
2024-12-21 13:32:22 -08:00
Returns an iterator function that can be used to iterate over the lines in a
text.
```tomo
func by_line(text: Text -> func(->Text?))
```
- `text` : The text to be iterated over, line by line.
**Returns:**
An iterator function that returns one line at a time, until it runs out and
returns `none` . **Note:** this function ignores a trailing newline if there is
one. If you don't want this behavior, use `text:by_split($/{1 nl}/)` instead.
**Example:**
```tomo
text := "
line one
line two
"
for line in text:by_line():
# Prints: "line one" then "line two":
say(line)
```
---
2025-03-04 21:11:18 -08:00
### `by_split`
2024-12-21 13:32:22 -08:00
Returns an iterator function that can be used to iterate over text separated by
2025-04-01 11:05:10 -07:00
a delimiter.
**Note:** to split based on a set of delimiters, use [`by_split_any()` ](#by_split_any ).
2024-12-21 13:32:22 -08:00
```tomo
2025-04-01 11:05:10 -07:00
func by_split(text: Text, delimiter: Text = "" -> func(->Text?))
2024-12-21 13:32:22 -08:00
```
2025-04-02 13:11:24 -07:00
- `text` : The text to be iterated over in delimited chunks.
2025-04-01 11:05:10 -07:00
- `delimiter` : An exact delimiter to use for splitting the text. If an empty text
is given, then each split will be the graphical clusters of the text.
2024-12-21 13:32:22 -08:00
**Returns:**
An iterator function that returns one chunk of text at a time, separated by the
2025-04-01 11:05:10 -07:00
given delimiter, until it runs out and returns `none` . **Note:** using an empty
delimiter (the default) will iterate over single grapheme clusters in the text.
2024-12-21 13:32:22 -08:00
**Example:**
```tomo
text := "one,two,three"
2025-04-01 11:05:10 -07:00
for chunk in text:by_split(","):
# Prints: "one" then "two" then "three":
say(chunk)
```
---
### `by_split_any`
Returns an iterator function that can be used to iterate over text separated by
one or more characters (grapheme clusters) from a given text of delimiters.
**Note:** to split based on an exact delimiter, use [`by_split()` ](#by_split ).
```tomo
func by_split_any(text: Text, delimiters: Text = " $\t\r\n" -> func(->Text?))
```
2025-04-02 13:11:24 -07:00
- `text` : The text to be iterated over in delimited chunks.
2025-04-01 11:05:10 -07:00
- `delimiters` : An text containing multiple delimiter characters (grapheme clusters)
to use for splitting the text.
**Returns:**
An iterator function that returns one chunk of text at a time, separated by the
given delimiter characters, until it runs out and returns `none` .
**Example:**
```tomo
text := "one,two,;,three"
for chunk in text:by_split_any(",;"):
2024-12-21 13:32:22 -08:00
# Prints: "one" then "two" then "three":
say(chunk)
```
---
2025-03-04 21:11:18 -08:00
### `bytes`
2024-09-02 21:54:48 -07:00
Converts a `Text` value to an array of bytes representing a UTF8 encoding of
the text.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2024-11-19 10:30:45 -08:00
func bytes(text: Text -> [Byte])
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be converted to UTF8 bytes.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-15 12:35:47 -07:00
An array of bytes (`[Byte]`) representing the text in UTF8 encoding.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-11-19 10:30:45 -08:00
>> "Amélie":bytes()
2024-09-15 12:33:47 -07:00
= [65[B], 109[B], 195[B], 169[B], 108[B], 105[B], 101[B]] : [Byte]
2024-08-18 13:51:25 -07:00
```
---
2025-03-07 13:19:12 -08:00
### `caseless_equals`
Checks whether two texts are equal, ignoring the casing of the letters (i.e.
case-insensitive comparison).
```tomo
func caseless_equals(a: Text, b:Text, language:Text = "C" -> Bool)
```
- `a` : The first text to compare case-insensitively.
- `b` : The second text to compare case-insensitively.
- `language` : The ISO 639 language code for which casing rules to use.
**Returns:**
`yes` if `a` and `b` are equal to each other, ignoring casing, otherwise `no` .
**Example:**
```tomo
>> "A":caseless_equals("a")
= yes
# Turkish lowercase "I" is "ı " (dotless I), not "i"
>> "I":caseless_equals("i", language="tr_TR")
= no
```
---
2025-03-04 21:11:18 -08:00
### `codepoint_names`
2024-09-02 21:54:48 -07:00
Returns an array of the names of each codepoint in the text.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2024-10-09 10:48:45 -07:00
func codepoint_names(text: Text -> [Text])
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text from which to extract codepoint names.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
An array of codepoint names (`[Text]`).
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> "Amélie":codepoint_names()
= ["LATIN CAPITAL LETTER A", "LATIN SMALL LETTER M", "LATIN SMALL LETTER E WITH ACUTE", "LATIN SMALL LETTER L", "LATIN SMALL LETTER I", "LATIN SMALL LETTER E"]
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `ends_with`
2024-09-09 02:31:25 -07:00
Checks if the `Text` ends with a literal suffix text.
```tomo
2024-10-09 10:48:45 -07:00
func ends_with(text: Text, suffix: Text -> Bool)
2024-09-09 02:31:25 -07:00
```
- `text` : The text to be searched.
- `suffix` : The literal suffix text to check for.
**Returns:**
`yes` if the text has the target, `no` otherwise.
**Example:**
```tomo
>> "hello world":ends_with("world")
= yes
```
---
2025-03-04 21:21:30 -08:00
### `from`
Get a slice of the text, starting at the given position.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-04 21:21:30 -08:00
func from(text: Text, first: Int -> Text)
2024-08-18 13:51:25 -07:00
```
2025-03-04 21:21:30 -08:00
- `text` : The text to be sliced.
- `frist` : The index of the first grapheme cluster to include (1-indexed).
2024-08-18 13:51:25 -07:00
**Returns:**
2025-03-04 21:21:30 -08:00
The text from the given grapheme cluster to the end of the text. Note: a
negative index counts backwards from the end of the text, so `-1` refers to the
last cluster, `-2` the second-to-last, etc. Slice ranges will be truncated to
2025-04-01 11:05:10 -07:00
the length of the text.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2025-03-04 21:21:30 -08:00
>> "hello":from(2)
= "ello"
>> "hello":from(-2)
= "lo"
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `from_bytes`
2024-09-02 21:54:48 -07:00
Returns text that has been constructed from the given UTF8 bytes. Note: the
text will be normalized, so the resulting text's UTF8 bytes may not exactly
match the input.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
func from_bytes(bytes: [Byte] -> [Text])
2024-08-18 13:51:25 -07:00
```
2025-04-01 11:05:10 -07:00
- `bytes` : The UTF-8 bytes of the desired text.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
A new text based on the input UTF8 bytes after normalization has been applied.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-15 12:33:47 -07:00
>> Text.from_bytes([195[B], 133[B], 107[B], 101[B]])
2024-09-02 21:54:48 -07:00
= "Åke"
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:21:30 -08:00
### `from_c_string`
Converts a C-style string to a `Text` value.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-04 21:21:30 -08:00
func from_c_string(str: CString -> Text)
2024-08-18 13:51:25 -07:00
```
2025-03-04 21:21:30 -08:00
- `str` : The C-style string to be converted.
2024-08-18 13:51:25 -07:00
**Returns:**
2025-03-04 21:21:30 -08:00
A `Text` value representing the C-style string.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2025-03-04 21:21:30 -08:00
>> Text.from_c_string(CString("Hello"))
= "Hello"
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:21:30 -08:00
### `from_codepoint_names`
Returns text that has the given codepoint names (according to the Unicode
specification) as its codepoints. Note: the text will be normalized, so the
resulting text's codepoints may not exactly match the input codepoints.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-04 21:21:30 -08:00
func from_codepoint_names(codepoint_names: [Text] -> [Text])
2024-08-18 13:51:25 -07:00
```
2025-03-04 21:21:30 -08:00
- `codepoint_names` : The names of each codepoint in the desired text. Names
are case-insentive.
2024-08-18 13:51:25 -07:00
**Returns:**
2025-03-04 21:21:30 -08:00
A new text with the specified codepoints after normalization has been applied.
Any invalid names are ignored.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2025-03-04 21:21:30 -08:00
>> Text.from_codepoint_names([
"LATIN CAPITAL LETTER A WITH RING ABOVE",
"LATIN SMALL LETTER K",
"LATIN SMALL LETTER E",
]
= "Åke"
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:21:30 -08:00
### `from_codepoints`
Returns text that has been constructed from the given UTF32 codepoints. Note:
the text will be normalized, so the resulting text's codepoints may not exactly
match the input codepoints.
2024-12-19 10:50:35 -08:00
```tomo
2025-04-01 11:05:10 -07:00
func from_codepoints(codepoints: [Int32] -> [Text])
2024-12-19 10:50:35 -08:00
```
2025-03-04 21:21:30 -08:00
- `codepoints` : The UTF32 codepoints in the desired text.
2024-12-19 10:50:35 -08:00
**Returns:**
2025-03-04 21:21:30 -08:00
A new text with the specified codepoints after normalization has been applied.
2024-12-19 10:50:35 -08:00
**Example:**
```tomo
2025-03-04 21:21:30 -08:00
>> Text.from_codepoints([197[32], 107[32], 101[32]])
= "Åke"
2024-12-19 10:50:35 -08:00
```
---
2025-03-04 21:11:18 -08:00
### `has`
2025-04-01 11:05:10 -07:00
Checks if the `Text` contains some target text.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
func has(text: Text, target: Text -> Bool)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be searched.
2025-04-01 11:05:10 -07:00
- `target` : The text to search for.
2024-08-18 13:51:25 -07:00
**Returns:**
2025-04-01 11:05:10 -07:00
`yes` if the target text is found, `no` otherwise.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
>> "hello world":has("wo")
2024-09-02 21:54:48 -07:00
= yes
2025-04-01 11:05:10 -07:00
>> "hello world":has("xxx")
2024-09-02 21:54:48 -07:00
= no
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `join`
2024-09-02 21:54:48 -07:00
Joins an array of text pieces with a specified glue.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2024-10-09 10:48:45 -07:00
func join(glue: Text, pieces: [Text] -> Text)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `glue` : The text used to join the pieces.
- `pieces` : The array of text pieces to be joined.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
A single `Text` value with the pieces joined by the glue.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> ", ":join(["one", "two", "three"])
= "one, two, three"
2024-08-18 13:51:25 -07:00
```
---
2025-03-07 13:56:23 -08:00
### `middle_pad`
Pad some text on the left and right side so it reaches a target width.
```tomo
2025-03-17 20:42:00 -07:00
func middle_pad(text: Text, width: Int, pad: Text = " ", language: Text = "C" -> Text)
2025-03-07 13:56:23 -08:00
```
- `text` : The text to pad.
- `width` : The target width.
- `pad` : The padding text (default: `" "` ).
2025-03-17 20:42:00 -07:00
- `language` : The ISO 639 language code for which character width to use.
2025-03-07 13:56:23 -08:00
**Returns:**
Text with length at least `width` , with extra padding on the left and right as
needed. If `pad` has length greater than 1, it may be partially repeated to
reach the exact desired length.
**Example:**
```tomo
>> "x":middle_pad(6)
= " x "
>> "x":middle_pad(10, "ABC")
= "ABCAxABCAB"
```
---
### `left_pad`
Pad some text on the left side so it reaches a target width.
```tomo
2025-03-17 20:42:00 -07:00
func left_pad(text: Text, width: Int, pad: Text = " ", language: Text = "C" -> Text)
2025-03-07 13:56:23 -08:00
```
- `text` : The text to pad.
- `width` : The target width.
- `pad` : The padding text (default: `" "` ).
2025-03-17 20:42:00 -07:00
- `language` : The ISO 639 language code for which character width to use.
2025-03-07 13:56:23 -08:00
**Returns:**
Text with length at least `width` , with extra padding on the left as needed. If
`pad` has length greater than 1, it may be partially repeated to reach the
exact desired length.
**Example:**
```tomo
>> "x":left_pad(5)
= " x"
>> "x":left_pad(5, "ABC")
= "ABCAx"
```
---
2025-03-04 21:11:18 -08:00
### `lines`
2024-09-02 21:54:48 -07:00
Splits the text into an array of lines of text, preserving blank lines,
ignoring trailing newlines, and handling `\r\n` the same as `\n` .
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-07 13:56:23 -08:00
func lines(text: Text -> [Text])
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be split into lines.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
An array of substrings resulting from the split.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> "one$(\n)two$(\n)three":lines()
= ["one", "two", "three"]
>> "one$(\n)two$(\n)three$(\n)":lines()
= ["one", "two", "three"]
>> "one$(\n)two$(\n)three$(\n\n)":lines()
= ["one", "two", "three", ""]
>> "one$(\r\n)two$(\r\n)three$(\r\n)":lines()
= ["one", "two", "three"]
>> "":lines()
= []
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `lower`
2024-09-02 21:54:48 -07:00
Converts all characters in the text to lowercase.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-07 13:19:12 -08:00
func lower(text: Text, language: Text = "C" -> Text)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be converted to lowercase.
2025-03-07 13:19:12 -08:00
- `language` : The ISO 639 language code for which casing rules to use.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
The lowercase version of the text.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> "AMÉLIE":lower()
= "amélie"
2025-03-07 13:19:12 -08:00
>> "I":lower(language="tr_TR")
>> "ı "
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `quoted`
2025-04-01 11:05:10 -07:00
Formats the text with quotation marks and escapes.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-30 23:34:44 -07:00
func quoted(text: Text, color: Bool = no, quotation_mark: Text = '"' -> Text)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be quoted.
- `color` : Whether to add color formatting (default is `no` ).
2025-03-30 23:34:44 -07:00
- `quotation_mark` : The quotation mark to use (default is `"` ).
2024-08-18 13:51:25 -07:00
**Returns:**
2025-04-01 11:05:10 -07:00
The text formatted as a quoted text.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> "one$(\n)two":quoted()
= "\"one\\ntwo\""
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `repeat`
2024-09-04 18:22:03 -07:00
Repeat some text multiple times.
```tomo
2024-10-09 10:48:45 -07:00
func repeat(text: Text, count:Int -> Text)
2024-09-04 18:22:03 -07:00
```
- `text` : The text to repeat.
- `count` : The number of times to repeat it. (Negative numbers are equivalent to zero).
**Returns:**
The text repeated the given number of times.
**Example:**
```tomo
>> "Abc":repeat(3)
= "AbcAbcAbc"
```
---
2025-03-04 21:11:18 -08:00
### `replace`
2025-04-01 11:05:10 -07:00
Replaces occurrences of a target text with a replacement text.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
func replace(text: Text, target: Text, replacement: Text -> Text)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text in which to perform replacements.
2025-04-01 11:05:10 -07:00
- `target` : The target text to be replaced.
- `replacement` : The text to replace the target with.
2024-08-18 13:51:25 -07:00
**Returns:**
2025-04-01 11:05:10 -07:00
The text with occurrences of the target replaced.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
>> "Hello world":replace("world", "there")
2024-09-02 21:54:48 -07:00
= "Hello there"
2024-09-03 17:48:11 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `reversed`
2024-12-19 12:32:19 -08:00
Return a text that has the grapheme clusters in reverse order.
```tomo
func reversed(text: Text -> Text)
```
- `text` : The text to reverse.
**Returns:**
A reversed version of the text.
**Example:**
```tomo
>> "Abc":reversed()
= "cbA"
```
---
2025-03-07 13:56:23 -08:00
### `right_pad`
Pad some text on the right side so it reaches a target width.
```tomo
2025-03-17 20:42:00 -07:00
func right_pad(text: Text, width: Int, pad: Text = " ", language: Text = "C" -> Text)
2025-03-07 13:56:23 -08:00
```
- `text` : The text to pad.
- `width` : The target width.
- `pad` : The padding text (default: `" "` ).
2025-03-17 20:42:00 -07:00
- `language` : The ISO 639 language code for which character width to use.
2025-03-07 13:56:23 -08:00
**Returns:**
Text with length at least `width` , with extra padding on the right as needed. If
`pad` has length greater than 1, it may be partially repeated to reach the
exact desired length.
**Example:**
```tomo
>> "x":right_pad(5)
= "x "
>> "x":right_pad(5, "ABC")
= "xABCA"
```
---
2025-03-04 21:11:18 -08:00
### `slice`
2024-11-19 09:59:06 -08:00
Get a slice of the text.
```tomo
func slice(text: Text, from: Int = 1, to: Int = -1 -> Text)
```
- `text` : The text to be sliced.
- `from` : The index of the first grapheme cluster to include (1-indexed).
- `to` : The index of the last grapheme cluster to include (1-indexed).
**Returns:**
The text that spans the given grapheme cluster indices. Note: a negative index
counts backwards from the end of the text, so `-1` refers to the last cluster,
`-2` the second-to-last, etc. Slice ranges will be truncated to the length of
2025-04-01 11:05:10 -07:00
the text.
2024-11-19 09:59:06 -08:00
**Example:**
```tomo
>> "hello":slice(2, 3)
= "el"
>> "hello":slice(to=-2)
= "hell"
>> "hello":slice(from=2)
= "ello"
```
---
2025-03-04 21:11:18 -08:00
### `split`
2025-04-01 11:05:10 -07:00
Splits the text into an array of substrings based on exact matches of a delimiter.
**Note:** to split based on a set of delimiter characters, use [`split_any()` ](#split_any ).
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
func split(text: Text, delimiter: Text = "" -> [Text])
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be split.
2025-04-01 11:05:10 -07:00
- `delimiter` : The delimiter used to split the text. If the delimiter is the
empty text, the text will be split into individual grapheme clusters.
2024-08-18 13:51:25 -07:00
**Returns:**
2025-04-01 11:05:10 -07:00
An array of subtexts resulting from the split.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2025-04-01 11:05:10 -07:00
>> "one,two,,three":split(",")
= ["one", "two", "", "three"]
2024-09-02 21:54:48 -07:00
>> "abc":split()
= ["a", "b", "c"]
2025-04-01 11:05:10 -07:00
```
2024-08-18 19:52:41 -07:00
2025-04-01 11:05:10 -07:00
---
2024-09-02 21:54:48 -07:00
2025-04-01 11:05:10 -07:00
### `split_any`
Splits the text into an array of substrings at one or more occurrences of a set
of delimiter characters (grapheme clusters).
**Note:** to split based on an exact delimiter, use [`split()` ](#split ).
```tomo
func split_any(text: Text, delimiters: Text = " $\t\r\n" -> [Text])
```
- `text` : The text to be split.
- `delimiters` : A text containing multiple delimiters to be used for
splitting the text into chunks.
**Returns:**
An array of subtexts resulting from the split.
**Example:**
```tomo
>> "one, two,,three":split_any(", ")
= ["one", "two", "three"]
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `starts_with`
2024-09-09 02:31:25 -07:00
Checks if the `Text` starts with a literal prefix text.
```tomo
2024-10-09 10:48:45 -07:00
func starts_with(text: Text, prefix: Text -> Bool)
2024-09-09 02:31:25 -07:00
```
- `text` : The text to be searched.
- `prefix` : The literal prefix text to check for.
**Returns:**
`yes` if the text has the given prefix, `no` otherwise.
**Example:**
```tomo
>> "hello world":starts_with("hello")
= yes
```
---
2025-03-04 21:11:18 -08:00
### `title`
2024-09-02 21:54:48 -07:00
Converts the text to title case (capitalizing the first letter of each word).
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-07 13:19:12 -08:00
func title(text: Text, language: Text = "C" -> Text)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be converted to title case.
2025-03-07 13:19:12 -08:00
- `language` : The ISO 639 language code for which casing rules to use.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
The text in title case.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> "amélie":title()
= "Amélie"
2025-03-07 13:19:12 -08:00
# In Turkish, uppercase "i" is "İ"
>> "i":title(language="tr_TR")
= "İ"
2024-08-18 13:51:25 -07:00
```
---
2025-03-04 21:11:18 -08:00
### `to`
2024-12-19 10:50:35 -08:00
Get a slice of the text, ending at the given position.
```tomo
func to(text: Text, last: Int -> Text)
```
- `text` : The text to be sliced.
- `last` : The index of the last grapheme cluster to include (1-indexed).
**Returns:**
The text up to and including the given grapheme cluster. Note: a negative index
counts backwards from the end of the text, so `-1` refers to the last cluster,
`-2` the second-to-last, etc. Slice ranges will be truncated to the length of
2025-04-01 11:05:10 -07:00
the text.
2024-12-19 10:50:35 -08:00
**Example:**
```tomo
>> "goodbye":to(3)
= "goo"
>> "goodbye":to(-2)
= "goodby"
```
---
2025-04-01 11:05:10 -07:00
### `translate`
Takes a table mapping target texts to their replacements and performs all the
replacements in the table on the whole text. At each position, the first
matching replacement is applied and the matching moves on to *after* the
replacement text, so replacement text is not recursively modified. See
[`replace()` ](#replace ) for more information about replacement behavior.
```tomo
2025-04-02 13:14:20 -07:00
func translate(translations:{Text=Text} -> Text)
2025-04-01 11:05:10 -07:00
```
- `text` : The text in which to perform replacements.
- `translations` : A table mapping from target text to its replacement.
**Returns:**
2025-04-02 13:11:24 -07:00
The text with all occurrences of the targets replaced with their corresponding
2025-04-01 11:05:10 -07:00
replacement text.
**Example:**
```tomo
>> "A < tag > & an amperand":translate({
"& " = "& ",
"< " = "< ",
">" = "> ",
'"" = "& quot",
"'" = "' ",
}
= "A < tag> & an ampersand"
```
---
2025-03-04 21:11:18 -08:00
### `trim`
2025-04-01 11:05:10 -07:00
Trims the given characters (grapheme clusters) from the left and/or right side of the text.
2024-09-05 21:03:28 -07:00
```tomo
2025-04-01 11:05:10 -07:00
func trim(text: Text, to_trim: Text = " $\t\r\n", left: Bool = yes, right: Bool = yes -> Text)
2024-09-05 21:03:28 -07:00
```
- `text` : The text to be trimmed.
2025-04-01 11:05:10 -07:00
- `to_trim` : The characters to remove from the left/right of the text.
- `left` : Whether or not to trim from the front of the text.
- `right` : Whether or not to trim from the back of the text.
2024-09-05 21:03:28 -07:00
**Returns:**
2025-04-01 11:05:10 -07:00
The text without the trim characters at either end.
2024-09-05 21:03:28 -07:00
**Example:**
```tomo
>> " x y z $(\n)":trim()
= "x y z"
2025-04-01 11:05:10 -07:00
>> "one,":trim(",")
= "one"
2024-09-05 21:03:28 -07:00
2025-04-01 11:05:10 -07:00
>> " xyz ":trim(right=no)
2024-09-05 21:03:28 -07:00
= "xyz "
```
---
2025-03-04 21:11:18 -08:00
### `upper`
2024-09-02 21:54:48 -07:00
Converts all characters in the text to uppercase.
2024-08-18 13:51:25 -07:00
2024-08-18 15:23:32 -07:00
```tomo
2025-03-07 13:19:12 -08:00
func upper(text: Text, language: Text = "C" -> Text)
2024-08-18 13:51:25 -07:00
```
2024-09-02 21:54:48 -07:00
- `text` : The text to be converted to uppercase.
2025-03-07 13:19:12 -08:00
- `language` : The ISO 639 language code for which casing rules to use.
2024-08-18 13:51:25 -07:00
**Returns:**
2024-09-02 21:54:48 -07:00
The uppercase version of the text.
2024-08-18 13:51:25 -07:00
**Example:**
2024-08-18 15:23:32 -07:00
```tomo
2024-09-02 21:54:48 -07:00
>> "amélie":upper()
= "AMÉLIE"
2025-03-07 13:19:12 -08:00
# In Turkish, uppercase "i" is "İ"
>> "i":upper(language="tr_TR")
= "İ"
2024-08-18 13:51:25 -07:00
```
2025-03-04 21:21:30 -08:00
---
### `utf32_codepoints`
Returns an array of Unicode code points for UTF32 encoding of the text.
```tomo
func utf32_codepoints(text: Text -> [Int32])
```
- `text` : The text from which to extract Unicode code points.
**Returns:**
An array of 32-bit integer Unicode code points (`[Int32]`).
**Example:**
```tomo
>> "Amélie":utf32_codepoints()
= [65[32], 109[32], 233[32], 108[32], 105[32], 101[32]] : [Int32]
```
2025-03-17 20:42:00 -07:00
---
### `width`
Returns the display width of the text as seen in a terminal with appropriate
font rendering. This is usually the same as the text's `.length` , but there are
some characters like emojis that render wider than 1 cell.
**Warning:** This will not always be exactly accurate when your terminal's font
rendering can't handle some unicode displaying correctly.
```tomo
func width(text: Text -> Int)
```
- `text` : The text whose length you want.
**Returns:**
An integer representing the display width of the text.
**Example:**
```tomo
>> "Amélie":width()
= 6
>> "🤠":width()
= 2
```
2025-04-01 11:05:10 -07:00
---
### `without_prefix`
Returns the text with a given prefix removed (if present).
```tomo
func without_prefix(text: Text, prefix: Text -> Text)
```
- `text` : The text to remove the prefix from.
- `prefix` : The prefix to remove.
**Returns:**
A text without the given prefix (if present) or the unmodified text if the
prefix is not present.
**Example:**
```tomo
>> "foo:baz":without_prefix("foo:")
= "baz"
>> "qux":without_prefix("foo:")
= "qux"
```
---
### `without_suffix`
Returns the text with a given suffix removed (if present).
```tomo
func without_suffix(text: Text, suffix: Text -> Text)
```
- `text` : The text to remove the suffix from.
- `suffix` : The suffix to remove.
**Returns:**
A text without the given suffix (if present) or the unmodified text if the
suffix is not present.
**Example:**
```tomo
>> "baz.foo":without_suffix(".foo")
= "baz"
>> "qux":without_suffix(".foo")
= "qux"
```