From ae5c3583001dc6dad0c026d7dfd1f654b0538840 Mon Sep 17 00:00:00 2001 From: TBalaji-MSFT <129296857+TPavanBalaji@users.noreply.github.com> Date: Tue, 31 Dec 2024 15:55:30 +0530 Subject: [PATCH] (AzureCXP) fixes MicrosoftDocs/azure-docs#358908 Updated line no: 79 From: | print To: print --- data-explorer/kusto/query/extract-function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-explorer/kusto/query/extract-function.md b/data-explorer/kusto/query/extract-function.md index 164ff80f9d..f0805eb3c0 100644 --- a/data-explorer/kusto/query/extract-function.md +++ b/data-explorer/kusto/query/extract-function.md @@ -76,7 +76,7 @@ The following example returns the username from the string. The regular expressi ```kusto let Text = "User: JohnDoe, Email: johndoe@example.com, Age: 29"; -| print UserName = extract("User: ([^,]+)", 1, Text) +print UserName = extract("User: ([^,]+)", 1, Text) ``` **Output**