array_slice()

Learn how to use the array_slice() function to extract a slice of a dynamic array.

Extracts a slice of a dynamic array.

Syntax

array_slice(array, start, end)

Parameters

NameTypeRequiredDescription
arraydynamic✔️The array from which to extract the slice.
startint✔️The start index of the slice (inclusive). Negative values are converted to array_length+start.
endint✔️The last index of the slice. (inclusive). Negative values are converted to array_length+end.

Returns

Returns a dynamic array of the values in the range [start..end] from array.

Examples

The following examples return a slice of the array.

print arr=dynamic([1,2,3]) 
| extend sliced=array_slice(arr, 1, 2)

Output

arrsliced
[1,2,3][2,3]
print arr=dynamic([1,2,3,4,5]) 
| extend sliced=array_slice(arr, 2, -1)

Output

arrsliced
[1,2,3,4,5][3,4,5]
print arr=dynamic([1,2,3,4,5]) 
| extend sliced=array_slice(arr, -3, -2)

Output

arrsliced
[1,2,3,4,5][3,4]