Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/content/docs/ruleset-engine/rules-language/operators.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The Rules language supports these comparison operators:
<td></td>
<th>English</th>
<th>C-like</th>
<th>String</th>
<th>String<sup>1</sup></th>
<th>IP</th>
<th>Number</th>
<th>Example (operator in bold)</th>
Expand Down Expand Up @@ -130,7 +130,7 @@ The Rules language supports these comparison operators:
</td>
</tr>
<tr>
<td>Wildcard<sup>1</sup><br/>(case-insensitive)</td>
<td><a href="#wildcard-matching">Wildcard</a><br/>(case-insensitive)</td>
<td><code>wildcard</code></td>
<td></td>
<td>✅</td>
Expand All @@ -141,7 +141,7 @@ The Rules language supports these comparison operators:
</td>
</tr>
<tr>
<td>Strict wildcard<sup>1</sup><br/>(case-sensitive)</td>
<td><a href="#wildcard-matching">Strict wildcard</a><br/>(case-sensitive)</td>
<td><code>strict wildcard</code></td>
<td></td>
<td>✅</td>
Expand All @@ -152,7 +152,7 @@ The Rules language supports these comparison operators:
</td>
</tr>
<tr>
<td>Matches<br />regex<sup>2</sup></td>
<td><a href="#regular-expression-matching">Matches<br />regex</a><sup>2</sup></td>
<td><code>matches</code></td>
<td><code>~</code></td>
<td>✅</td>
Expand All @@ -179,8 +179,8 @@ The Rules language supports these comparison operators:
</div>

{/* prettier-ignore */}
<sup>1</sup> For more information, refer to [Wildcard matching](#wildcard-matching).<br/>
<sup>2</sup> Access to the `matches` operator requires a Cloudflare Business or Enterprise plan. For more information, refer to [Regular expression matching](#regular-expression-matching).<br/>
<sup>1</sup> All string operators are case-sensitive unless explicitly stated as case-insensitive, such as the `wildcard` operator.<br/>
<sup>2</sup> Access to the `matches` operator requires a Cloudflare Business or Enterprise plan.<br/>
<sup>3</sup> Currently, not all Cloudflare products support lists in their expressions. For more information on lists, refer to [Inline lists](/ruleset-engine/rules-language/values/#inline-lists) and [Lists](/waf/tools/lists/).

:::caution
Expand Down
Loading