Rules - New functions for array and map operations
5mo ago
Source
CloudflareRules - New functions for array and map operationscloudflare.comNew functions for array and map operations Cloudflare Rulesets now include new functions that enable advanced expression logic for evaluating arrays and maps. These functions allow you to build rules that match against lists of values in request or response headers, enabling use cases like country-based blocking using custom headers. New functions Function Description split(source, delimiter) Splits a string into an array of strings using the specified delimiter. join(array, delimiter) Joins an array of strings into a single string using the specified delimiter. has_key(map, key) Returns true if the specified key exists in the map. has_value(map, value) Returns true if the specified value exists in the map. Example use cases Check if a country code exists in a header list: has_value(split(http.response.headers["x-allow-country"][0], ","), ip.src.country) Check if a specific header key exists: has_key(http.request.headers, "x-custom-header") Join array values for logging or comparison: join(http.request.headers.names, ", ") For more information, refer to the Functions reference .
You might also wanna read
Introduction to JSON Query: A Flexible and Expandable JSON Query Language
The article introduces JSON Query, a small, flexible, and expandable JSON query language. It explains the basic syntax structure where funct
jsonquerylang.org·8mo agoA practical guide to dynamic array functions in Microsoft Excel
This article provides a comprehensive guide on using dynamic array functions in Microsoft Excel, including FILTER, SORTBY, UNIQUE, XLOOKUP,

Comments
Sign in to join the conversation.
No comments yet. Be the first.