Rule – Inactive | Rule – Simulation | Rule – Active | |
---|---|---|---|
Rule set – Inactive | Inactive | Inactive | Inactive |
Rule set – Simulation | Inactive | Simulation | Simulation |
Rule set – Active | Inactive | Simulation | Active |
=
, !=
, <
, <=
, >
, >=
[ ]
- Matches a single character that is contained within the brackets. For example, “[abc]” matches “a”, “b”, or “c”.^
- Marks the start of the string. For example, “^Ex” matches “Example”$
- Marks the end of the string. For example, “ple$” matches “Example”\
- Marks the next character as literal. For example, ”(” matches ”(”*
- Matches the preceding character zero or more times. For example, “Exam*ple” matches “Exaple”, “Example”, and “Exammple”+
- Matches the preceding character one or more times. For example, “Exam+ple” matches “Example” and “Exammple”?
- Matches the preceding character zero or one time. For example, “Exam?ple” matches “Exaple” and “Example”.
- Matches any single character. For example, “a.b” matches “afb”|
- Separates alternatives. For example, “a|b” matches “a” or “b”