rlike.asciidoc 574 B

12345678910111213141516171819
  1. [discete]
  2. [[esql-rlike-operator]]
  3. ==== `RLIKE`
  4. // tag::body[]
  5. Use `RLIKE` to filter data based on string patterns using using
  6. <<regexp-syntax,regular expressions>>. `RLIKE` usually acts on a field placed on
  7. the left-hand side of the operator, but it can also act on a constant (literal)
  8. expression. The right-hand side of the operator represents the pattern.
  9. [source.merge.styled,esql]
  10. ----
  11. include::{esql-specs}/docs.csv-spec[tag=rlike]
  12. ----
  13. [%header.monospaced.styled,format=dsv,separator=|]
  14. |===
  15. include::{esql-specs}/docs.csv-spec[tag=rlike-result]
  16. |===
  17. // end::body[]