func subdata(with: NSRange) -> Data
struct NSData.SearchOptions
Availability 有効性
Technology
func range(of dataToFind: Data
,
options mask: NSData
.SearchOptions
= [],
in searchRange: NSRange
) -> NSRange
dataToFind
The data for which to search. このデータを捜し出します。
mask
A mask specifying search options. The NSData
options may be specified singly or by combining them with the C bitwise OR
operator.
検索オプションを指定するマスク。NSData
オプションは、単独にまたはそれらをCビット単位OR
演算子で組み合わせることによって指定されるかもしれません。
searchRange
The range within the receiver in which to search for data
. If this range is not within the data object's range of bytes, range
is raised.
レシーバの内部のこの範囲の中でdata
を検索することになります。この範囲がデータオブジェクトの持つバイト範囲内でないならば、range
が引き起こされます。
An NSRange
structure giving the location and length of data
within search
, modulo the options in mask
. The range returned is relative to the start of the searched data, not the passed-in search range. Returns {
NSNot
, 0}
if data
is not found or is empty.
あるNSRange
構造体、data
の位置と範囲をsearch
内で、mask
の中のオプションをモジュロ演算して、与えています。返される範囲は、検索されたデータの始まりに相対的です、渡された検索範囲ではなく。{
NSNot
, 0}
を返します、もしdata
が見つけられないまたは空ならば返します。
func subdata(with: NSRange) -> Data
struct NSData.SearchOptions