A valid index of the string. i
must be less than the string’s end index.
文字列の有効なインデックス。i
は文字列の末尾インデックスより少なくなければなりません。
Subscript
subscript(_:)
Accesses the character at the given position.
与えられた位置で文字にアクセスします。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 7.1+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
Parameters パラメータ
i
Discussion 解説
You can use the same indices for subscripting a string and its substring. For example, this code finds the first letter after the first space: あなたは、文字列とそれの下位文字列での添え字の使用に対して同じインデックスを使うことができます。例えば、このコードは最初の空白の後で最初の文字を見つけます:
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Getting Characters and Bytes 文字とバイトを取得する
var first: Character?
The first element of the collection.
コレクションの最初の要素。
var last: Character?
The last element of the collection.
コレクションの最後の要素。
func randomElement () -> Character?
Returns a random element of the collection.
コレクションのある無作為の要素を返します。
func randomElement <T>(using: inout T) -> Character?
Returns a random element of the collection, using the given generator as a source for randomness.
コレクションのある無作為な要素を返します、与えられた生成子を無作為さの出典として使って使います。