ES|QL BIT_LENGTH function
string-
String expression. If
null, the function returnsnull.
Returns the bit length of a string.
Note
All strings are in UTF-8, so a single character can use multiple bytes.
| string | result |
|---|---|
| keyword | integer |
| text | integer |
FROM airports
| WHERE country == "India"
| KEEP city
| EVAL fn_length = LENGTH(city), fn_bit_length = BIT_LENGTH(city)
| city:keyword | fn_length:integer | fn_bit_length:integer |
|---|---|---|
| Agwār | 5 | 48 |
| Ahmedabad | 9 | 72 |
| Bangalore | 9 | 72 |