summaryrefslogtreecommitdiffstats
path: root/yql/essentials/docs/en
diff options
context:
space:
mode:
authorimunkin <[email protected]>2025-05-12 15:52:31 +0300
committerimunkin <[email protected]>2025-05-12 16:14:45 +0300
commit8c703c6587dff4af2c95a54cf176ae287958ae66 (patch)
tree28be968c688564097dbcf99f96117a377c262fe6 /yql/essentials/docs/en
parentd629bb70c8773d2c0c43f5088ddbb5a86d8c37ea (diff)
YQL-19923: Add Ascii{Contains,Equals}IgnoreCase functions to String UDF
commit_hash:6717ca10951c933df9cf8757763cfbae15facbbf
Diffstat (limited to 'yql/essentials/docs/en')
-rw-r--r--yql/essentials/docs/en/changelog/2025.02.md1
-rw-r--r--yql/essentials/docs/en/udf/list/string.md4
2 files changed, 5 insertions, 0 deletions
diff --git a/yql/essentials/docs/en/changelog/2025.02.md b/yql/essentials/docs/en/changelog/2025.02.md
index 2208e46dc57..54b7f5c0587 100644
--- a/yql/essentials/docs/en/changelog/2025.02.md
+++ b/yql/essentials/docs/en/changelog/2025.02.md
@@ -31,3 +31,4 @@ SELECT foo_new, ... WHERE foo = 1 GROUP BY expr AS foo_new
Removed String::Reverse function, use Unicode::Reverse.
Removed String::HasPrefixIgnoreCase and String::StartsWithIgnoreCase functions, use String::AsciiStartsWithIgnoreCase.
Removed String::HasSuffixIgnoreCase and String::EndsWithIgnoreCase functions, use String::AsciiEndsWithIgnoreCase.
+Added String::AsciiContainsIgnoreCase and String::AsciiEqualsIgnoreCase functions.
diff --git a/yql/essentials/docs/en/udf/list/string.md b/yql/essentials/docs/en/udf/list/string.md
index 5cc65ccccae..c010814d870 100644
--- a/yql/essentials/docs/en/udf/list/string.md
+++ b/yql/essentials/docs/en/udf/list/string.md
@@ -32,8 +32,12 @@ Functions for ASCII strings:
* `String::CollapseText(String{Flags:AutoMap}, Uint64) -> String`
+* `String::AsciiEqualsIgnoreCase(String?, String) -> Bool` Added in the version [2025.02](../../changelog/2025.02.md#string-module)
+
* `String::Contains(String?, String) -> Bool`
+* `String::AsciiContainsIgnoreCase(String?, String) -> Bool` Added in the version [2025.02](../../changelog/2025.02.md#string-module)
+
* `String::Find(String{Flags:AutoMap}, String, [Uint64?]) -> Int64`: Returns the first position found or -1. The optional argument is the offset from the beginning of the string.
* `String::ReverseFind(String{Flags:AutoMap}, String, [Uint64?]) -> Int64`: Returns the last position found or -1. The optional argument is the offset from the beginning of the string.