...
Match mode controls how multiple condition input lines are matched against the source:
Loose mode verifies that - all input lines are must be present somewhere in the source. Their order is ignoreddoes not matter, and any content additional lines may appear between matching lines in the sourcethem.
Sequential mode requires - all input lines to must appear in the source in the same order as entered. Additional text/ lines may appear between them.
Strict mode requires - all input lines to must appear in the same order as entered and consecutively in the source. No additional text or lines may appear between the matching linesthem.
Match Mode | Line order matters | Lines must be consecutive |
|---|---|---|
Loose | No | No |
Sequential | Yes | No |
Strict | Yes | Yes |
...