From 483ea37830c93f9a0382df2d9c6e7ae60b2a0fa2 Mon Sep 17 00:00:00 2001 From: Andreas Hochsteger Date: Sun, 2 Mar 2025 15:49:50 +0000 Subject: [PATCH] docs: add example for case-insensitive regex --- src/examples/advanced/regularExpressions.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/examples/advanced/regularExpressions.ts b/src/examples/advanced/regularExpressions.ts index 2a4d6479..39df2e43 100644 --- a/src/examples/advanced/regularExpressions.ts +++ b/src/examples/advanced/regularExpressions.ts @@ -23,6 +23,8 @@ import { * * The extracted data is finally used to dynamically define the location of the attachment to be stored using: * `.../Reports/{{message.subject.match.school}}/All Reports/{{message.subject.match.reportType}}/{{message.subject.match.reportSubType}}/{{message.subject.match.date}}-{{attachment.name}}` + * + * Flags like searching for the case-insensitive string are also supported by prefixing the regex with `(?)` like `(?i)...`. */ export const info: ExampleInfo = { name: "regularExpressions",