|
|
|
|
ArrayReverse (Function) In french: TableauInverse Reverses the content of a one-dimensional array.
arrAscendingArray is array of int arrAscendingArray = [1,2,3,4,5,6,7,8,9,10] // Reverses the array content ArrayReverse(arrAscendingArray) // The array contains [10,9,8,7,6,5,4,3,2,1]
Syntax
ArrayReverse(<WLanguage array>)
<WLanguage array>: Array Name of the array variable to reverse. If this array contains several dimensions, only the first dimension is reversed. Remarks This function can be used on the associative arrays.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|