Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns the size, in bytes, of the input string.
string_size(
source)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
source | string |
✔️ | The string for which to return the byte size. |
Returns the length, in bytes, of the input string.
print size = string_size("hello")
Output
size |
---|
5 |
print size = string_size("⒦⒰⒮⒯⒪")
Output
size |
---|
15 |