Strings
In Gleam strings are written as text surrounded by double quotes, and can span multiple lines and contain unicode characters.
Gleam では、文字列は二重引用符で囲まれたテキストとして記述され、複数行にまたがり、ユニコード文字を含むことができます。
The <> operator can be used to concatenate strings.
<> 演算子は文字列の連結に使用できます。
Several escape sequences are supported:
いくつかのエスケープシーケンスがサポートされています。
\"- double quote\\- backslash\f- form feed\n- newline\r- carriage return\t- tab\u{xxxxxx}- unicode codepoint
The gleam/string
standard library module contains functions for working with strings.
gleam/string 標準ライブラリモジュールには文字列を扱う関数が含まれています。