subscript(Range<String.Index>) -> Substring
Accesses a contiguous subrange of the collection’s elements.
コレクションのもついくらかの要素からなるある連続した下位範囲にアクセスします。
subscript<R>(R) -> Substring
Accesses the contiguous subrange of the collection’s elements specified by a range expression.
範囲式によって指定される、コレクションの要素からなる連続した下位範囲にアクセスします。
func prefix(through: Index) -> Substring
Returns a subsequence from the start of the collection through the specified position.
コレクションの始まりから指定された位置までも含む下位シーケンスを返します。
func prefix(upTo : Index) -> Substring
Returns a subsequence from the start of the collection up to, but not including, the specified position.
コレクションの始まりから指定された位置まで、しかしそれは含めない下位シーケンスを返します。
func prefix(while: (Character) -> Bool) -> Substring
Returns a subsequence containing the initial elements until
predicate
returns false
and skipping the remaining elements.
predicate
がfalse
を返すまで冒頭の要素を含んでいて残りの要素を飛ばしている、ある下位シーケンスを返します。
func suffix(Int) -> Substring
Returns a subsequence, up to the given maximum length, containing the final elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの末尾の要素を含めて返します。
func suffix(from: Index) -> Substring
Returns a subsequence from the specified position to the end of the collection.
指定された位置からコレクションの終わりまでの下位シーケンスを返します。