ROW
- Last Updated: May 13, 2026
- 1 minute read
- Semaphore
- Documentation
Specifies the row index (1-based) to use for a row rule.
Applies to
Values
- “[NNN]” Specific index
- “[NNN],[NNN2],…” Comma separated list of indices
- “[NNN]-[NNN2]” Range of indices from NNN to NNN2
- “^[NNN]” Excluding specific index
- “^[NNN],[NNN2],…” Excluding specified indices
- “^[NNN]-[NNN2]” Excluding specified range of indices from NNN to NNN2
Where [NNN] [NNN2] are numeric integers from 1 - 1000
Example 1
<row row="2,3,5-7" />
Matches rows 2,3,5,6 and 7 in any detected table
Example 2
<row row="^1" />
Matches any row excluding the first (often the header) row