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 true
if the argument is an empty string or is null.
isempty(
value)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
value | string |
✔️ | The value to check if empty or null. |
A boolean value indicating whether value is an empty string or is null.
x | isempty(x) |
---|---|
"" | true |
"x" | false |
parsejson("") | true |
parsejson("[]") | false |
parsejson("{}") | false |