elasticsearch/docs/reference/esql/functions/rlike.asciidoc
2024-05-03 22:59:51 -04:00

21 lines
609 B
Text

[discete]
[[esql-rlike-operator]]
==== `RLIKE`
// tag::body[]
Use `RLIKE` to filter data based on string patterns using using
<<regexp-syntax,regular expressions>>. `RLIKE` usually acts on a field placed on
the left-hand side of the operator, but it can also act on a constant (literal)
expression. The right-hand side of the operator represents the pattern.
include::./types/like.asciidoc[]
[source.merge.styled,esql]
----
include::{esql-specs}/docs.csv-spec[tag=rlike]
----
[%header.monospaced.styled,format=dsv,separator=|]
|===
include::{esql-specs}/docs.csv-spec[tag=rlike-result]
|===
// end::body[]