mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 23:57:20 -04:00
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).
42 lines
993 B
Text
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[]
|