func subdata(in: Range<Data.Index>) -> Data
func split(maxSplits : Int, omittingEmptySubsequences : Bool, whereSeparator : (UInt8) -> Bool) -> [Data]
Availability 有効性
Technology
separator
The element that should be split upon. それで分離されることになる要素。
maxSplits
The maximum number of times to split the collection, or one less than the number of subsequences to return. If max
subsequences are returned, the last one is a suffix of the original collection containing the remaining elements. max
must be greater than or equal to zero. The default value is Int
.
コレクションを分割する回数の最大限度、または返される下位シーケンスの数より1つ少ないもの。max
の下位シーケンスが返されるならば、最後のものは、残りの要素を含んでいる元コレクションの後ろ部分です。max
は、ゼロより大きいか等しくなければなりません。省略時の値は、Int
です。
omittingEmptySubsequences
If false
, an empty subsequence is returned in the result for each consecutive pair of separator
elements in the collection and for each instance of separator
at the start or end of the collection. If true
, only nonempty subsequences are returned. The default value is true
.
false
ならば、このコレクション中の連続するseparator
要素の対それぞれに、そしてコレクションの始めと終わりのseparator
インスタンスそれぞれに、1つの空の下位シーケンスが結果において返されます。true
ならば、空でない下位シーケンスだけが返されます。省略時の値は、true
です。
An array of subsequences, split from this collection’s elements. このコレクションの要素を分割した、下位シーケンスいくらかからなる配列。
The resulting array consists of at most max
subsequences. Elements that are used to split the collection are not returned as part of any subsequence.
結果の配列は、多くともmax
の下位シーケンスから成ります。コレクションを分割するのに使われる要素らは、どれかの下位シーケンスの一部として返されません。
The following examples show the effects of the max
and omitting
parameters when splitting a string at each space character (” “). The first use of split
returns each word that was originally separated by one or more spaces.
以下の例は、ある文字列を各空白文字(” “)で分割する場合のmax
とomitting
パラメータの効果を示します。split
の最初の利用は、各単語を返します、それはもともと1つ以上の空白で隔てられています。
The second example passes 1
for the max
parameter, so the original string is split just once, into two new strings.
2番目の例は1
をmax
パラメータに渡します、それで元の文字列は一度だけ分割されて、2つの新しい文字列になります。
The final example passes false
for the omitting
parameter, so the returned array contains empty strings where spaces were repeated.
最後の例はfalse
をomitting
パラメータに対して渡します、それで返される配列は空白が繰り返されたところで空の文字列を含みます。
Complexity: O(n), where n is the length of the collection. 計算量:O(n)、ここでnはコレクションの長さです。
func subdata(in: Range<Data.Index>) -> Data
func split(maxSplits : Int, omittingEmptySubsequences : Bool, whereSeparator : (UInt8) -> Bool) -> [Data]