Skip to main content

Responses are generated using AI and may contain mistakes.

Exabeam SearchExabeam Search Guide

Query Using Wildcards

Perform complex case sensitive or case insensitive wildcard queries using the WLD or WLDi operators.

Note

Wildcard operators will also work with query by field searches.

Operator Descriptions

Example Syntax

To indicate that an expression is using wildcard characters, start with either WLD or WLDi and enclose the expression in double quotes inside of parentheses.

Case Sensitive Syntax: WLD("MiCrO*")

Case Insensitive Syntax: WLDi ("micro*")

* represents zero or more characters.

Syntax: WLD("MiCrO*")

Will match MiCrO followed by zero or more characters

Syntax: WLDi("micro*")

Will match micro, with any combination of upper- or lower-case letters, followed by zero or more characters.

? represents a match for any 1 character (besides line terminators).

Syntax: WLD("W?b")

Will match Web.

Syntax: WLDi("w?b")

Will match web, with any combination of upper- or lower-case letters.