Skip to content

Commit b7d36ca

Browse files
committed
Note matching is case insensitive.
1 parent 95cb4ad commit b7d36ca

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docs/reference/eql/functions.asciidoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ experimental::[]
1515
[[eql-fn-startswith]]
1616
=== `startsWith`
1717

18-
Returns `true` if a source string begins with a provided substring.
18+
Returns `true` if a source string begins with a provided substring. Matching is case insensitive.
1919

2020
[%collapsible]
2121
====
2222
*Example*
2323
[source,eql]
2424
----
2525
startsWith("regsvr32.exe", "regsvr32") // returns true
26+
startsWith("regsvr32.exe", "RegSvr32") // returns true
2627
startsWith("regsvr32.exe", "explorer") // returns false
2728
startsWith("", "") // returns true
2829

0 commit comments

Comments
 (0)