ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Queue, stack, list and array functions / Array functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns an array without duplicates.
The following arrays can be handled:
  • One-dimensional array of simple elements (int, real, string).
  • One-dimensional array of structures. Duplicates are deleted according to the value of one or more members.
New in version 2024
PHP This function is now available for WEBDEV websites in PHP.
Example
// First array of integers
arrMyArray1 is array of int
ArrayAdd(arrMyArray1, 1)
ArrayAdd(arrMyArray1, 2)
ArrayAdd(arrMyArray1, 1)
ArrayAdd(arrMyArray1, 3)

// "Distinct" array
arrMyDistinct is array of int
arrMyDistinct = ArrayDistinct(arrMyArray1)
// the result is 1; 2; 3
Syntax
<Result> = ArrayDistinct(<WLanguage array>)
<Result>: Array
Array variable that contains the array without duplicates.
<WLanguage array>: Array
Name of the Array variable to use. This array must be a one-dimensional array.
Remarks
You can also delete the duplicates in an array using ArrayDeleteDuplicate.
  • ArrayDeleteDuplicate directly manipulates the array passed as parameter.
  • ArrayDistinct does not modify the array passed as parameter and returns a new array without the duplicates.
Business / UI classification: Business Logic
Component: wd290vm.dll
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/21/2023

Send a report | Local help