次の方法で共有


set_has_element()

適用対象: ✅Microsoft FabricAzure データ エクスプローラーAzure MonitorMicrosoft Sentinel

指定されたセットに指定された要素が含まれるかどうかを判定します。

構文

set_has_element(set, value)

構文規則について詳しく知る。

パラメーター

件名 タイプ Required 説明
set dynamic ✔️ 検索する入力配列。
value ✔️ 検索する値。 値の型は、longintdoubledatetimetimespandecimalstringguid、または bool である必要があります。

返品

true または、値が配列に存在するかどうかに応じて false

print arr=dynamic(["this", "is", "an", "example"]) 
| project Result=set_has_element(arr, "example")

出力

結果
true

配列内の値が存在する位置を見つけるには、array_index_of(arr, value) を使用します。 どちらの関数も同じように高パフォーマンスです。