We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95cb4ad commit b7d36caCopy full SHA for b7d36ca
1 file changed
docs/reference/eql/functions.asciidoc
@@ -15,14 +15,15 @@ experimental::[]
15
[[eql-fn-startswith]]
16
=== `startsWith`
17
18
-Returns `true` if a source string begins with a provided substring.
+Returns `true` if a source string begins with a provided substring. Matching is case insensitive.
19
20
[%collapsible]
21
====
22
*Example*
23
[source,eql]
24
----
25
startsWith("regsvr32.exe", "regsvr32") // returns true
26
+startsWith("regsvr32.exe", "RegSvr32") // returns true
27
startsWith("regsvr32.exe", "explorer") // returns false
28
startsWith("", "") // returns true
29
0 commit comments