Skip to content

Commit 9bb0bb2

Browse files
authored
Merge pull request #134378 from BhargaviAnnadevara-MSFT/patch-78
(AzureCXP) Corrected examples
2 parents 784739d + 8fddf3f commit 9bb0bb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-monitor/log-query/string-operations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.subservice: logs
55
ms.topic: conceptual
66
author: bwren
77
ms.author: bwren
8-
ms.date: 08/16/2018
8+
ms.date: 10/19/2020
99

1010
---
1111

@@ -70,8 +70,8 @@ Operator |Description |Case-Sensitive|Example (yie
7070
`!startswith_cs` |Right-hand-side isn't an initial subsequence of left-hand-side|Yes |`"Fabrikam" !startswith_cs "fab"`
7171
`endswith` |Right-hand-side is a closing subsequence of left-hand-side|No |`"Fabrikam" endswith "Kam"`
7272
`!endswith` |Right-hand-side isn't a closing subsequence of left-hand-side|No |`"Fabrikam" !endswith "brik"`
73-
`endswith_cs` |Right-hand-side is a closing subsequence of left-hand-side|Yes |`"Fabrikam" endswith "Kam"`
74-
`!endswith_cs` |Right-hand-side isn't a closing subsequence of left-hand-side|Yes |`"Fabrikam" !endswith "brik"`
73+
`endswith_cs` |Right-hand-side is a closing subsequence of left-hand-side|Yes |`"Fabrikam" endswith_cs "kam"`
74+
`!endswith_cs` |Right-hand-side isn't a closing subsequence of left-hand-side|Yes |`"Fabrikam" !endswith_cs "brik"`
7575
`matches regex`|left-hand-side contains a match for Right-hand-side |Yes |`"Fabrikam" matches regex "b.*k"`
7676
`in` |Equals to one of the elements |Yes |`"abc" in ("123", "345", "abc")`
7777
`!in` |Not equals to any of the elements |Yes |`"bca" !in ("123", "345", "abc")`

0 commit comments

Comments
 (0)