From b96b92a20cae75ae2dce8795e7bcf7bb07ada8c7 Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Sun, 26 Oct 2025 14:31:44 +0100 Subject: [PATCH] Update anchors --- docs/cloud/guides/security/03_data-masking.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/cloud/guides/security/03_data-masking.md b/docs/cloud/guides/security/03_data-masking.md index a818670a4b4..f4e418cee33 100644 --- a/docs/cloud/guides/security/03_data-masking.md +++ b/docs/cloud/guides/security/03_data-masking.md @@ -19,10 +19,10 @@ For basic data masking use cases, the `replace` family of functions offers a con | Function | Description | |------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------| -| [`replaceOne`](/sql-reference/functions/string-replace-functions#replaceone) | Replaces the first occurrence of a pattern in a haystack string with the provided replacement string. | -| [`replaceAll`](/sql-reference/functions/string-replace-functions#replaceall) | Replaces all occurrences of a pattern in a haystack string with the provided replacement string. | -| [`replaceRegexpOne`](/sql-reference/functions/string-replace-functions#replaceregexpone) | Replaces the first occurrence of a substring matching a regular expression pattern (in re2 syntax) in a haystack with the provided replacement string. | -| [`replaceRegexpAll`](/sql-reference/functions/string-replace-functions#replaceregexpall) | Replaces all occurrences of a substring matching a regular expression pattern (in re2 syntax) in a haystack with the provided replacement string. | +| [`replaceOne`](/sql-reference/functions/string-replace-functions#replaceOne) | Replaces the first occurrence of a pattern in a haystack string with the provided replacement string. | +| [`replaceAll`](/sql-reference/functions/string-replace-functions#replaceAll) | Replaces all occurrences of a pattern in a haystack string with the provided replacement string. | +| [`replaceRegexpOne`](/sql-reference/functions/string-replace-functions#replaceRegexpOne) | Replaces the first occurrence of a substring matching a regular expression pattern (in re2 syntax) in a haystack with the provided replacement string. | +| [`replaceRegexpAll`](/sql-reference/functions/string-replace-functions#replaceRegexpAll) | Replaces all occurrences of a substring matching a regular expression pattern (in re2 syntax) in a haystack with the provided replacement string. | For example, you can replace the name "John Smith" with a placeholder `[CUSTOMER_NAME]` using the `replaceOne` function: