-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[DOCS] Rewrite regexp query
#42711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOCS] Rewrite regexp query
#42711
Conversation
|
Pinging @elastic/es-search |
mayya-sharipova
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @jrodewig
| aa?bb? # no match | ||
|
|
||
| .... | ||
| abc # matches 'ab', 'abb', 'abbb', 'abbbb', etc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be * instead of c?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching that @mayya-sharipova. Fixed with 19d387e.
Changes
regexpqueryThis is part of #40977, an effort to standardize documentation for query types.
Before
Regexp query - Before image
After
Regexp query - After image
Regular expression syntax - After image