From f48f7803ad0dd1c46102214405b6a60fd6127742 Mon Sep 17 00:00:00 2001 From: Soeren Wolfers Date: Fri, 27 Sep 2024 20:02:59 +0100 Subject: [PATCH] Update char.md --- docs/sql/functions/char.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sql/functions/char.md b/docs/sql/functions/char.md index 37c3dc6005e..ed037a8de3b 100644 --- a/docs/sql/functions/char.md +++ b/docs/sql/functions/char.md @@ -18,7 +18,7 @@ This section describes functions and operators for examining and manipulating [` | [`string ^@ search_string`](#string--search_string) | Return true if `string` begins with `search_string`. | | [`string || string`](#string--string) | String concatenation. | | [`string[index]`](#stringindex) | Extract a single character using a (1-based) index. | -| [`string[begin:end]`](#stringbeginend) | Extract a string using slice conventions (like in Python). Missing `begin` or `end` arguments are interpreted as the beginning or end of the list respectively. Negative values are accepted. | +| [`string[begin:end]`](#stringbeginend) | Extract a string using slice conventions, see [slicing]({% link docs/sql/functions/list.md %}#slicing). | | [`string LIKE target`](#string-like-target) | Returns true if the `string` matches the like specifier (see [Pattern Matching]({% link docs/sql/functions/pattern_matching.md %})). | | [`string SIMILAR TO regex`](#string-similar-to-regex) | Returns `true` if the `string` matches the `regex`; identical to `regexp_full_match` (see [Pattern Matching]({% link docs/sql/functions/pattern_matching.md %})). | | [`array_extract(list, index)`](#array_extractlist-index) | Extract a single character using a (1-based) index. |