REGEXP Mode
Harness the full power of Regular Expressions for high-precision queries. This mode supports advanced operators and anchors, enabling you to define complex patterns for specific epigraphic matching.
|
REGEXP
|
Description
|
Epigraphic Example
|
|---|---|---|
| ^co | Starts with "co". | COH (Cohors) |
| er$ | Ends with "er". | VEXILLATER |
| er | Contains "er" at any position. | GERMANICVS |
| ^.{2}pp | Contains "pp" starting at the 3rd position. | APPIVS |
| ^F$ | Exact match. Only the letter "F". | F (Fecit) |
| ^.{3}$ | Exactly 3 characters long. | AVG, LEG |
| [AV] | Matches either "A" or "V". | FLAVIVS / FLAVIVS |
| ^[A-C] | Starts with A, B, or C. | ANTONIVS, BALBVS |
| \d+ | Contains one or more digits. | LEG X |