Text¶
String handling, formatting, and display utilities.
Import¶
Description¶
String is a dynamically-sized UTF-8 byte string with methods for manipulation, search, and case conversion. StringBuilder enables efficient incremental string construction.
Format creates strings from templates with placeholder substitution. Types that implement the Display interface can be used with format strings and output functions.
Types¶
| Type | Description |
|---|---|
String |
A dynamically-sized UTF-8 byte string. |
StringBuilder |
Efficiently constructs strings through incremental appends. |
Functions¶
| Function | Description |
|---|---|
Format |
Formats values into a string using replacement fields. |
Interfaces¶
| Interface | Description |
|---|---|
Display |
Interface for types that can be converted to a string representation. |