RegexPair
A pair of start and end regular expressions defining a text region boundary.
Notes
Defines a pair of start and end regular expressions used to identify a text region. Supports optional case-insensitive matching.
Usage
- YAML
- JSON
- XML
end: string
ignoreCase: false
start: string
{
"end": "string",
"ignoreCase": false,
"start": "string"
}
<regexPair>
<end>string</end>
<ignoreCase>false</ignoreCase>
<start>string</start>
</regexPair>
Properties
| Property | Type | Required | Default |
|---|---|---|---|
end | string | No | - |
ignoreCase | boolean | No | - |
start | string | No | - |
Property Details
end
The end boundary of the range.
ignoreCase
When enabled, matching is performed without regard to character case.
start
The start boundary of the range.