Strings
The three string forms — open, regular, and raw.
stringValue = openString | regularString | rawStringForm
Description
Example
When to use each form
See Also
Last updated
Was this helpful?
The three string forms — open, regular, and raw.
Strings represent sequences of Unicode code points. They carry textual data and preserve whitespace and formatting within their boundaries.
Internet Object supports three string forms, each with its own syntax and use cases:
stringValue = openString | regularString | rawStringAll three forms preserve whitespace and Unicode content as written.
Open string — simple, unstructured text with no leading or trailing whitespace and no structural characters.
Regular string — text that needs structural characters, leading/trailing whitespace, or escape sequences.
Raw string — text with many backslashes or quotes (file paths, regular expressions), where escaping would be cumbersome.
String Types — schemas for strings
Numeric Values — the numeric forms
Value Representations — all value types
Last updated
Was this helpful?
Was this helpful?
