# Available Condition Operators

Trigger conditions can be any complex logic of combined AND or OR statements, where parameters are checked with comparison operators against predefined values.

The input parameters for any condition to be checked are Variables you previously created in your DCP (or any system-predefined existing variables).

Various operators are available to help you precisely target when defining conditional logic or filtering rules. Below is a list of supported operators, along with explanations of their usage and behavior:

| Exactly matches        | True if the value is exactly equal to the specified string (case-sensitive). |
| ---------------------- | ---------------------------------------------------------------------------- |
| Does not exactly match | True if the value is not exactly equal to the specified string.              |
| Contains               | True if the value contains the specified substring.                          |
| Does not contain       | True if the value does not contain the specified substring.                  |
| Starts with            | True if the value begins with the specified string.                          |
| Does not start with    | True if the value does not begin with the specified string.                  |
| Ends with              | True if the value ends with the specified string.                            |
| Does not end with      | True if the value does not end with the specified string.                    |
| Matches regex          | True if the value matches the provided regular expression pattern.           |
| Does not match regex   | True if the value does not match the provided regular expression pattern.    |
| Bigger                 | True if the value is greater than the specified number.                      |
| Bigger-equal           | True if the value is greater than or equal to the specified number.          |
| Lower                  | True if the value is less than the specified number.                         |
| Lower-equal            | True if the value is less than or equal to the specified number.             |

Use AND or OR statements to combine multiple condition checks.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.jentis.com/jentis-dcp-elements/triggers/available-condition-operators.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
