You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature is provided “as is” and requires advanced knowledge of the Regular Expression
@@ -177,6 +177,66 @@ implement regular expressions and to thoroughly test.
177
177
178
178

179
179
180
+
### Regex Supported Formats
181
+
182
+
Endpoint Protector supports both standard Regex syntax and **Perl-Compatible Regular Expression (PCRE)** extensions and modifiers. For example, you can use the (?i) modifier at the beginning of a regex pattern to make it case-insensitive during matching.
183
+
184
+
**Case Sensitivity Options in Regular Expressions**
185
+
186
+
Regular expressions allow you to control how text matching handles letter casing. Depending on your requirements, you can use case-sensitive, case-insensitive, or partially case-insensitive matching.
187
+
188
+
**1. Case-Sensitive Matching (Default)**
189
+
190
+
By default, Regex matching is case-sensitive.
191
+
This means that only text with the exact same casing will be matched.
0 commit comments