isempty()
Si applica a: ✅Microsoft Fabric✅Azure Esplora dati✅ Azure Monitor✅Microsoft Sentinel
Restituisce true
se l'argomento è una stringa vuota o è Null.
Sintassi
isempty(
value)
Altre informazioni sulle convenzioni di sintassi.
Parametri
Nome | Digita | Obbligatorio | Description |
---|---|---|---|
value | string |
✔️ | Valore da controllare se vuoto o null. |
Valori restituiti
Valore booleano che indica se il valore è una stringa vuota o è null.
Esempio
x | isempty(x) |
---|---|
"" | true |
"x" | false |
parsejson("") | true |
parsejson("[]") | false |
parsejson("{}") | false |