ES|QL TO_UPPER function
str-
String expression. If
null, the function returnsnull. The input can be a single-valued column or expression, or a multi-valued column or expression.
Returns a new string representing the input string converted to upper case.
| str | result |
|---|---|
| keyword | keyword |
| text | keyword |
ROW message = "Some Text"
| EVAL message_upper = TO_UPPER(message)
| message:keyword | message_upper:keyword |
|---|---|
| Some Text | SOME TEXT |