Constants for the tag schemes specified when initializing a linguistic tagger.
SDKs
- iOS 11.0+
- macOS 10.13+
- Mac Catalyst 13.0+
- tvOS 11.0+
- watchOS 4.0+
Framework
- Foundation
Declaration
struct NSLinguisticTagScheme
Overview
When initializing a linguistic tagger with init(tag
, you specify one or more tag schemes that correspond to the kind of information you're interested in for a selection of natural language text. To ensure optimal performance, avoid specifying tag schemes that you won't use.
Some tag schemes are only available for certain units and languages. Use the available
or available
methods to determine the possible values for a specified language and linguistic unit.
When working with linguistic tags using the methods described in Getting Linguistic Tags and Enumerating Linguistic Tags, the returned tag value depends on the specified scheme. For example, given the token "Überraschung", the returned tag is noun
when using the lexical
tag scheme, "de" (German language) when using the language
tag scheme, and "Latn" (Latin script) when using the script
tag scheme, as shown in the following code.
let tagger = NSLinguisticTagger(tagSchemes: [.lexicalClass, .language, .script], options: 0)
tagger.string = "Überraschung"
tagger.tag(at: 0, unit: .word, scheme: .lexicalClass, tokenRange: nil) // Noun
tagger.tag(at: 0, unit: .word, scheme: .language, tokenRange: nil) // de
tagger.tag(at: 0, unit: .word, scheme: .script, tokenRange: nil) // Latn
The following table lists the available tag schemes, their applicable linguistic units, and possible tag values.
Linguistic tag scheme | Applicable linguistic units | Possible tag values |
---|---|---|
See Token Types | ||
See Lexical Classes | ||
See Name Types | ||
See Name Types and Lexical Classes | ||
A stem of the word | ||
| A BCP-47 language tag | |
| An ISO 15924 script code |