From 4f7c809c28edeb2e2b60013d22d7f6bbe5a0c97c Mon Sep 17 00:00:00 2001 From: Safhyy Date: Mon, 4 May 2026 11:22:12 +0200 Subject: [PATCH] Document string contains ignore case requirement Added documentation for string contains ignore case functionality. --- .../requirements.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/clips-plugins/deluxemenus/options-and-configurations/requirements.md b/clips-plugins/deluxemenus/options-and-configurations/requirements.md index c39cf73..b8e0b0f 100644 --- a/clips-plugins/deluxemenus/options-and-configurations/requirements.md +++ b/clips-plugins/deluxemenus/options-and-configurations/requirements.md @@ -365,6 +365,26 @@ Checks if `input:` contains `output:` (Case sensitive). To invert the requirement (Check if the input doesn't contain the output) you can simply add the exclamation mark before the type name (like this `type: "!string contains"`). +### **String Contains Ignore Case** + +> ```yaml +> type: string contains ignorecase +> input: "TEXT" +> output: "TEXT" +> ``` +> +> > **Example:** +> > +> > ```yaml +> > type: string contains ignorecase +> > input: "%server_name%" +> > output: "chat" +> > ``` + +Checks if `input:` contains `output:` (Case insensitive). + +To invert the requirement (Check if the input doesn't contain the output) you can simply add the exclamation mark before the type name (like this `type: "!string contains ignorecase"`). + ### **String Length** > ```yaml