AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de colas, pilas, listas y arrays / Funciones de arrays
  • Copying arrays of different dimensions
  • Miscellaneous
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Copies the content of a WLanguage array or associative array to another one.
Note: This function can only be used on WLanguage arrays.
Ejemplo
MyArray is array of 2 strings
MyArray[1] = "WINDEV"
MyArray[2] = "WEBDEV"
MyArrayCopy is array of 2 strings
ArrayCopy(MyArray, MyCopiedArray)
arrA1 is array of int = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
// Copy the first 3 elements from arrA1 to arrA2
arrA2 is array of int
ArrayCopy(arrA1, arrA2, 1, 3)	// [1, 2, 3]
// Copy 4 integers from position 4
arrA3 is array of int
ArrayCopy(arrA1, arrA3, 4, 4)	// [4, 5, 6, 7]
// Copy the end of array from position 6
arrA4 is array of int
ArrayCopy(arrA1, arrA4, 6)		// [6, 7, 8, 9, 10]
Sintaxis
ArrayCopy(<Source array> , <Destination array> [, <Start position of copy> [, <Copy size>]])
<Source array>: Array
Name of the Array variable to copy.
<Destination array>: Array
Name of the Array variable into which the copy must be performed.
<Start position of copy>: Optional integer
Index in the source array where the copy must start. This index must be between 1 and the last index of the array.
This parameter is set to 1 by default. Otherwise, a WLanguage error occurs at runtime.
This parameter cannot be used with an associative array.
PHP This parameter is not available.
<Copy size>: Optional integer
Copy size.
Warning: The range of values indicated by <Position de début de copie> and <Taille de copie> must be entirely included in the source array. Otherwise, a WLanguage error occurs at runtime.
By default, elements are copied from the specified index to the end of the array.
This parameter cannot be used with an associative array.
PHP This parameter is not available.
Observaciones

Copying arrays of different dimensions

  • Simple array: A WLanguage error is generated at runtime.
  • Dynamic array: The destination array is completely re-allocated (and therefore emptied) with the copy.

Miscellaneous

  • A WLanguage error occurs if the type of the elements found in the destination array differs from the type of the elements found the source array.
  • If the destination array contains elements, these elements are deleted.
  • This function can be used with associative arrays. In this case, it is only possible to copy the entire array. It is not possible to copy part of the associative array.
  • This function cannot be used with the fixed arrays.
Componente: wd300vm.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Check the results of the examples
arrA1 is array of int = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
// Copy the first 3 elements from arrA1 to arrA2
arrA2 is array of int
ArrayCopy(arrA1, arrA2, 1, 3) // [1, 2, 3]
// Copy 4 integers from position 4
arrA3 is array of int
ArrayCopy(arrA1, arrA3, 4, 4) // [4,5, 6, 7]
// Copy the end of array from position 6
arrA4 is array of int
ArrayCopy(arrA1, arrA4, 6) // [6, 7, 8, 9, 10]
Mister FERNANDO
11 11 2016

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local