From d01ac7801d2c74aca6c7df4fe3322d99c65e6c11 Mon Sep 17 00:00:00 2001 From: Mike Farah Date: Sat, 3 May 2025 11:37:40 +1000 Subject: [PATCH] Regen doc --- pkg/yqlib/doc/operators/string-operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/yqlib/doc/operators/string-operators.md b/pkg/yqlib/doc/operators/string-operators.md index e76c8860..fdace5a7 100644 --- a/pkg/yqlib/doc/operators/string-operators.md +++ b/pkg/yqlib/doc/operators/string-operators.md @@ -3,7 +3,7 @@ ## RegEx This uses Golang's native regex functions under the hood - See their [docs](https://github.com/google/re2/wiki/Syntax) for the supported syntax. -Case insensitive tip: prefix the regex with `(?i)` - e.g. `test("(?i)cats)"`. +Case insensitive tip: prefix the regex with `(?i)` - e.g. `test("(?i)cats")`. ### match(regEx) This operator returns the substring match details of the given regEx.