...
Note |
---|
IMPORTANT: Regex is quite a bit more efficient than the and/or operators. Try to use regexes as much as possible. |
Info |
---|
Note that when using different operators the where_to_search will be passed down. If on a lower level one is found, that one will be used. This way you can:
|
Tag example
Code Block |
---|
Extraction example
Code Block |
---|
Document type example
Code Block |
---|
{
"type": "document_type",
"rules": [
{
"gen_id": "Bat&BallHotel",
"confidence": 100,
"rule_type": ["first"],
"+and": [
{"+rule": ["L:(?i)The Bat & Ball Hotel"]},
{"+rule": ["L:(?i)Order"]}
]
}
]
} |
FAQ
Expand | |||||
---|---|---|---|---|---|
| |||||
By adding the option where_to_search::search_in to your rule. An example field would look like this:
|
...