elasticsearch/docs/reference/esql/functions/string-functions.asciidoc
Bogdan Pintea 9482673fbe
Docs: move base64 functions under string functions (#107866)
This moves the TO_BASE64 and FROM_BASE64 from the type conversion
functions under string functions (they take a string as input and output
another string).
2024-04-25 13:57:45 +02:00

42 lines
993 B
Text

[[esql-string-functions]]
==== {esql} string functions
++++
<titleabbrev>String functions</titleabbrev>
++++
{esql} supports these string functions:
// tag::string_list[]
* <<esql-concat>>
* <<esql-from_base64>>
* <<esql-left>>
* <<esql-length>>
* <<esql-locate>>
* <<esql-ltrim>>
* <<esql-replace>>
* <<esql-right>>
* <<esql-rtrim>>
* <<esql-split>>
* <<esql-substring>>
* <<esql-to_base64>>
* <<esql-to_lower>>
* <<esql-to_upper>>
* <<esql-trim>>
// end::string_list[]
include::layout/concat.asciidoc[]
include::layout/from_base64.asciidoc[]
include::layout/left.asciidoc[]
include::layout/length.asciidoc[]
include::layout/locate.asciidoc[]
include::layout/ltrim.asciidoc[]
include::layout/replace.asciidoc[]
include::layout/right.asciidoc[]
include::layout/rtrim.asciidoc[]
include::layout/split.asciidoc[]
include::layout/substring.asciidoc[]
include::layout/to_base64.asciidoc[]
include::layout/to_lower.asciidoc[]
include::layout/to_upper.asciidoc[]
include::layout/trim.asciidoc[]