NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Regexp Query Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Regexp Query Usage
editFluent DSL example
editq
.Regexp(c => c
.Name("named_query")
.Boost(1.1)
.Field(p => p.Description)
.Value("s.*y")
.Flags("INTERSECTION|COMPLEMENT|EMPTY")
.MaximumDeterminizedStates(20000)
)
Object Initializer syntax example
editnew RegexpQuery
{
Name = "named_query",
Boost = 1.1,
Field = "description",
Value = "s.*y",
Flags = "INTERSECTION|COMPLEMENT|EMPTY",
MaximumDeterminizedStates = 20000
}
Example json output.
{
"regexp": {
"description": {
"_name": "named_query",
"boost": 1.1,
"flags": "INTERSECTION|COMPLEMENT|EMPTY",
"max_determinized_states": 20000,
"value": "s.*y"
}
}
}