Instance Property
インスタンスプロパティ
unicode
unicodeScalars
The string’s value represented as a collection of Unicode scalar values.
ユニコードスカラー値のコレクションとして表される、文字列のもつ値。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 6.0.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
var unicodeScalars: String
.UnicodeScalarView
{ get set }
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Working with String Views 文字列ビューを扱う
init(String.UnicodeScalarView)
Creates a string corresponding to the given collection of Unicode scalars.
指定されたユニコードスカラーのコレクションに対応する文字列を組み立てます。
init(Substring.UnicodeScalarView)
Creates a String having the given content.
与えられた内容を持っているあるStringを作成します。
var utf16: String.UTF16View
A UTF-16 encoding of
self
.
self
のUTF-16符号化。
init(String.UTF16View)
Creates a string corresponding to the given sequence of UTF-16 code units.
指定されたUTF-16コード単位の連続に対応する文字列を作成します。
init?(Substring.UTF16View)
Creates a String having the given content.
与えられた内容を持っているあるStringを作成します。
var utf8: String.UTF8View
A UTF-8 encoding of
self
.
self
のUTF-8符号化。
init(String.UTF8View)
Creates a string corresponding to the given sequence of UTF-8 code units.
指定されたUTF-8コード単位の連続に対応する文字列を作成します。
init?(Substring.UTF8View)
Creates a String having the given content.
与えられた内容を持っているあるStringを作成します。