18 lines
352 B
Markdown
18 lines
352 B
Markdown
|
% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
|
||
|
|
||
|
**Example**
|
||
|
|
||
|
This example replaces any occurrence of the word "World" with the word "Universe":
|
||
|
|
||
|
```esql
|
||
|
ROW str = "Hello World"
|
||
|
| EVAL str = REPLACE(str, "World", "Universe")
|
||
|
| KEEP str
|
||
|
```
|
||
|
|
||
|
| str:keyword |
|
||
|
| --- |
|
||
|
| Hello Universe |
|
||
|
|
||
|
|