共用方式為


array_reverse()

適用於:✅Microsoft網狀架構Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel

反轉動態陣列中的項目順序。

語法

array_reverse(value)

深入瞭解 語法慣例

參數

姓名 類型​​ 必要 Description
value dynamic ✔️ 要反轉的陣列。

傳回

傳回數位,其中包含與輸入數位相反順序相同的元素。

範例

此範例顯示反轉的單字數位列。

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

輸出

結果
[“example”,“an”,“is”,“this”]