From 66331e03e748aad3378f9c75750c8bf8e3b0508f Mon Sep 17 00:00:00 2001 From: Biarity Date: Sat, 10 Feb 2018 10:25:38 +1000 Subject: [PATCH] Documented case-insensitive operators --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 63c66d6..0266150 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,9 @@ You can replace this DSL with your own (eg. use JSON instead) by implementing an | `<=` | Less than or equal to | | `@=` | Contains | | `_=` | Starts with | +| `@=*` | Case-insensitive string Contains | +| `_=*` | Case-insensitive string Starts with | +| `==*` | Case-insensitive string Equals | ### Example project You can find an example project incorporating most Sieve concepts in [SieveTests](https://github.com/Biarity/Sieve/tree/master/SieveTests).