Edit in the dashboard
In the Cloudflare dashboard, there are two options for editing expressions:
- Expression Builder: Allows you to create expressions using drop-down lists, emphasizing a visual approach to defining an expression.
- Expression Editor: A text-only interface that supports advanced features, such as grouping symbols and functions for transforming and validating values.
In general, you can switch back and forth between the Expression Builder and the Expression Editor. However, the Expression Builder does not support advanced features like:
The builder may also not show all the fields you can use in the expression you are editing.
If you use advanced expression features or enter unlisted fields in your expression when using the editor, you may not be able to switch to the Expression Builder. You will get a warning popup stating that the expression is not supported in the builder. To proceed, you may discard any changes made in the editor, or cancel the switch and continue working in the editor.
The Expression Builder allows you to visually create rule expressions by using drop-down lists and entering field values to define one or multiple sub-expressions.

The Expression Preview displays the expression in text:
(ip.src.country ne "GB")The Expression Builder will automatically escape the backslash (\) and double quote (") special characters in string literals when using the quoted string syntax.
The Expression Editor is a text-only interface for defining rule expressions that supports the entire specification of Cloudflare's Rules language, including parentheses as grouping symbols.

To access the Expression Editor, select Edit expression next to the Expression Preview:

To switch back from the Expression Editor to the Expression Builder, select Use expression builder.
In expressions using the quoted string syntax, all backslash (\) and double quote (") characters in string literals must be escaped. The visual Expression Builder will automatically escape these special characters by prepending a backslash such that \ and " become \\ and \", respectively.
# Example of an expression with a " character written using quoted string syntaxhttp.request.uri.path eq "/foo\"bar"The Expression Builder supports both the quoted string syntax and the raw string syntax. In the raw string syntax, there are no special characters or escape sequences, so all characters up to the ending delimiter are interpreted as is.
# Example of an expression with a " character written using the raw string syntaxhttp.request.uri.path eq r#"/foo"bar"#When you select Matches regex in the Operator dropdown in the dashboard, the expression preview will automatically use the raw string syntax. In other situations, you may need to switch to the Expression Editor to manually enter a string using the raw string syntax. In this case, switching back to the Expression Builder will keep the syntax you used in the editor.
When you write a regular expression using the quoted string syntax, you may need to perform additional escaping — refer to Quoted string syntax for details.
To write complex regular expressions, Cloudflare recommends that you use the raw string syntax, which needs less escaping.
The Expression Editor supports parentheses as grouping symbols. Use parentheses to explicitly group and nest expressions and, in turn, create highly targeted expressions.
The following rule expression will match requests from any visitor who is not from Malaysia and tries to access WordPress URI paths.
((http.request.uri.path contains "/xmlrpc.php") or (http.request.uri.pathcontains "/wp-login.php") or (http.request.uri.path contains "/wp-admin/"and not http.request.uri.path contains "/wp-admin/admin-ajax.php" and nothttp.request.uri.path contains "/wp-admin/theme-editor.php")) andip.src.country ne "MY"Only the Expression Editor supports nested expressions such as the one above. If you create a rule with nested expressions in the Expression Editor and try to switch to the Expression Builder, a dialog will warn you that the expression is not supported in the builder. You will be prompted to Discard changes and switch to the Expression Builder or Cancel and continue working in the editor.
Cloudflare validates all expressions before saving them, so if your expression has errors, you will receive an error message in the Cloudflare dashboard, similar to the following:
Filter parsing error (1:313): ((http.request.uri.path contains"/xmlrpc.php") or (http.request.uri.path contains "/wp-login.php") or(http.request.uri.path contains "/wp-admin/" and nothttp.request.uri.path contains "/wp-admin/admin-ajax.php" and nothttp.request.uri.path contains "/wp-admin/theme-editor.php")) andip.src.country ne "MY") ^ unrecognised inputWas this helpful?
- Resources
- API
- New to Cloudflare?
- Directory
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- © 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark