- enumerateLinguisticTagsInRange:scheme:options:orthography:usingBlock:
NSStringEnumerationOptions
Availability 有効性
Technology
- (NSArray
<NSLinguisticTag
> *)linguisticTagsInRange:(NSRange
)range
scheme:(NSLinguisticTagScheme
)scheme
options:(NSLinguisticTaggerOptions
)options
orthography:(NSOrthography
*)orthography
tokenRanges:(NSArray
<NSValue
*> * _Nullable *)tokenRanges;
range
The range of the string to analyze. 分析する文字列の範囲。
tagScheme
The tag scheme to use. See Linguistic Tag Schemes for supported values. 使用するタグスキーム(タグ体系)。サポートされる値のためにLinguistic Tag Schemesを見てください。
opts
The linguistic tagger options to use. See NSLinguistic
for the constants. These constants can be combined using the C-Bitwise OR operator.
使用する言語学的タガー(標識付け)オプション。NSLinguistic
を定数のために見てください。これらの定数は、Cビット単位演算子を使って結合できます。
orthography
The orthography of the string. If nil
, the linguistic tagger will attempt to determine the orthography from the string content.
この文字列の正書法。nil
ならば、言語学的タガーは正書法を文字列の内容から決定しようと試みるでしょう。
tokenRanges
An array returned by-reference containing the token ranges of the linguistic tags wrapped in NSValue
objects.
参照によって返されるある配列、NSValue
オブジェクトの中にラップされる言語学的タグのトークン範囲を含んでいます。
Returns an array containing the linguistic tags for the token
within the receiving string.
ある配列を返します、受け手側の文字列内のtoken
に対する言語学的タグを含んでいます。
This is a convenience method. It is the equivalent of creating an instance of NSLinguistic
, specifying the receiver as the string to be analyzed, and the orthography (or nil
) and then invoking the NSLinguistic
method or linguistic
.
これは便宜メソッドです。それはNSLinguistic
のインスタンスの作成を、レシーバを分析される文字列として、そして正書法(またはnil
)を指定して行うこと、そしてそれからNSLinguistic
のメソッドまたはlinguistic
を発動することと同等です。
- enumerateLinguisticTagsInRange:scheme:options:orthography:usingBlock:
NSStringEnumerationOptions