Collection Functions(Power Automate Cloud flows)

10/08/2023

Japanese version.

Collection Functions

Function to retrieve array items

FunctionImportanceOverview
firstHighFunction to get the first item in an array.
first also has a separate function of the same name to get the first character of the text.
It works in the opposite way to last.
lastHighFunction to get the last item in an array.
last also has a separate function of the same name to get the last character of the text.
It works in the opposite way to first.
takeMiddle
itemHigh

Function to merge multiple arrays

FunctionImportanceOverview
intersectionMiddle
unionMiddle

Function to get information about an array

FunctionImportanceOverview
containsHighThis function checks whether an array contains a specified item.
There is also a function of the same name that checks whether a given text is contained.
emptyHigh
lengthMiddle

Other

FunctionImportanceOverview
joinMiddle
skipMiddle
chunkMiddle
sortMiddleFunction to sort array contents in ascending order.
If you want to sort in descending order, use the reverse function together.
reverseMiddleFunction to reverse sort the contents of an array .

---

Links

Functions