TAG attribute
The TAG
attribute identifies a token by matching the tag label specified during tagging.
The syntax is:
TAG(tag1[, tag2, ...])
where:
TAG
is the attribute name and must be written in uppercase.tag#
is the tag name.
The TAG
attribute can be used alone in an attribute, as in:
SCOPE SENTENCE
{
IDENTIFY(TEST)
{
@EXTRACTION_FIELD[TAG(tag1)]
}
}
or combined with other attributes as in:
SCOPE SENTENCE
{
IDENTIFY(TEST)
{
@EXTRACTION_FIELD[SYNCON(1234) + TAG(tag2)]
}
}