var dominantLanguage : String?
func orthography(at: Int, effectiveRange : NSRangePointer?) -> NSOrthography?
func setOrthography (NSOrthography?, range: NSRange)
Availability 有効性
Technology
string
The string for which the dominant language is determined. それに対する優勢な言語が特定される文字列。
The BCP-47 tag identifying the dominant language of the string, or the tag "und" if a specific language cannot be determined. その文字列の優勢な言語を識別しているBCP-47タグ、または特定の言語が判定されることができないならばタグ "und"。
The dominant
method is a convenience method for creating a new linguistic tagger, setting the string
property, and getting the dominant
property. If you analyze the same string more than once, create a linguistic tagger object instead of calling the method, as shown in this example:
dominant
メソッドは、新しい言語学的タガーを作成して、string
プロパティを設定して、そしてdominant
を取得することに対する便宜メソッドです。あなたが同じ文字列を一度以上分析するならば、言語学的タガーオブジェクトを、このメソッドを呼び出す代わりに作成してください、この例で示すように:
In the example, the BCP-47 language tag "de" is returned as the dominant language, indicating that the text is in German. 例において、BCP-47言語タグ "de" は優勢な言語として返され、そのテキストがドイツ語であることを示しています。
var dominantLanguage : String?
func orthography(at: Int, effectiveRange : NSRangePointer?) -> NSOrthography?
func setOrthography (NSOrthography?, range: NSRange)