|
- Inserting an element into an array
- Inserting an element into an advanced array property
- Inserting an element into a list
- Insertion of an array
- Inserting a list
- Use conditions
- Various
Insert (Function) In french: Insère
MyArray is array of 2 strings Insert(MyArray, 1, "WINDEV") Insert(MyArray, 2, "WEBDEV") Insert(MyArray, 3, "WINDEV and WEBDEV") // Display the content of 3rd element Trace(MyArray[3]) // Displays "WINDEV and WEBDEV"
MyArray is array of 2 strings MyArray[1] = "WINDEV" MyArray[2] = "WEBDEV" Insert(MyArray, 3, "WINDEV and WEBDEV") // Display the content of 3rd element Trace(MyArray[3]) // Displays "WINDEV and WEBDEV"
// Associative array Last Name - First Name aaLastNameFirstName is associative array of strings Insert(aaLastNameFirstName, "Smith", "Tommy") Insert(aaLastNameFirstName, "Montgomery", "Julia")
Syntax
Inserting an element into an array or into an advanced array property Hide the details
Insert(<WLanguage array> , <Insertion subscript> [, <Element value>])
<WLanguage array>: Array Name of Array variable to use. This array must be a one-dimensional array. <Insertion subscript>: entier Subscript where the element will be inserted into the array. From this subscript, all elements will be moved by 1 element. If <Insertion subscript> is equal to the number of elements in the array +1, the element is added at the end of array (equivalent to ArrayAdd or Adds). A WLanguage error occurs if <Insertion subscript> is greater than the number of elements in the array +1. <Element value>: Any type, optional Element that will be inserted into the array at the specified position. If this parameter is not specified, the array is enlarged with the default value of the type of the other array elements.
Inserting an element into an associative array Hide the details
Insert(<WLanguage array> , <Element key> , <Element value>)
<WLanguage array>: Array Name of Array variable to use. This array must be a one-dimensional array. <Element key>: Type of key in the associative array Value of key for which the element will be inserted. In an associative array without duplicate, a WLanguage error occurs if the element already exists. <Element value>: Any type Element that will be inserted into the specified array.
Inserting an array into an array Hide the details
Insert(<WLanguage array> , <Insertion subscript> [, <WLanguage array to insert>])
<WLanguage array>: Array Name of Array variable to use. This array must be a one-dimensional array. <Insertion subscript>: entier Subscript where the element will be inserted into the array. From this subscript, all elements will be moved by 1 element. If <Insertion subscript> is equal to the number of elements in the array +1, the element is added at the end of the array (equivalent to ArrayAdd). A WLanguage error occurs if <Insertion subscript> is greater than the number of elements in the array +1. <WLanguage array to insert>: Optional array Array that will be inserted into <Array name>. This insertion will be performed at the specified insertion subscript.
Inserting an element into a list Hide the details
Insert(<WLanguage list> , <Insertion subscript> , <Element value>)
<WLanguage list>: HEX@ Name of List variable to use. <Insertion subscript>: Integer constant Subscript where the element will be inserted into the list. The following constants can be used: | | FirstElement | The element is inserted at the beginning of list. | LastElement | The element is inserted at the end of list. | BeforeCurrentElement | The element is inserted before the current element. This constant is available when browsing the list elements only. Caution: The element will be browsed by the next iteration if the loop is a descending loop. | AfterCurrentElement | The element is inserted after the current element. This constant is available when browsing the list elements only. Caution: The element will be browsed by the next iteration if the loop is an ascending loop. |
<Element value>: Any type Element that will be inserted into the list at the specified position.
Inserting a list into a list Hide the details
Insert(<WLanguage list> , <Insertion subscript> , <WLanguage list to insert>)
<WLanguage list>: HEX@ Name of List variable to use. <Insertion subscript>: Integer constant Subscript where the list will be inserted into the list. The following constants can be used: | | FirstElement | The list is inserted at the beginning of <WLanguage list>. | LastElement | The list is inserted at the end of <WLanguage list>. | BeforeCurrentElement | The list is inserted before the current element. This constant is available when browsing the list elements only. | AfterCurrentElement | The list is inserted after the current element. This constant is available when browsing the list elements only. |
<WLanguage list to insert>: HEX@ List that will be inserted at the specified insertion subscript. Remarks Inserting an element into an array When using Insert: - the array is automatically enlarged to receive the new element.
- the element is converted (if necessary) into the type of the other array elements.
When declaring an array of N elements, this array contains N empty elements. For example, the array declared below contains 3 empty strings.
MyArray is array of 3 strings
When inserting an element ( Insert), this element is automatically inserted among the elements already found in the array. In our example, the array will contain 4 elements once the insertion is performed. Inserting an element into an advanced array property When using the function Insert: - the advanced variable must be created.
- the advanced type must have an enumerator of modifiable collection type.
- the advanced type is automatically enlarged to receive the new elements.
- the element is initialized with the value passed in parameter. If no value is passed in parameter, the element is initialized with the default value of the type of the array elements.
Inserting an element into a list When using the function Insert: - the list is automatically enlarged to receive the new element.
- the element is converted (if necessary) into the type of the other list elements.
Insertion of an array When using the function Insert: - the array is automatically resized to receive the new elements. The elements of <WLanguage array to insert> are added at the position specified in <Array name>.
- the two arrays must have the same type.
- the arrays must have the same dimension.
- the values of array dimensions (except for the first one) must be identical.
Inserting a list When using the function Insert: - the list is automatically enlarged to receive the new elements. The elements of <WLanguage list to insert> are added at the specified position.
- the two lists must have the same type.
Use conditions This function can be used with the structures. In this case, you must: - Declare a variable (same type as the structure).
- Initialize each member.
- Pass the structure variable in parameter to Insert.
This function cannot be used on: - non-created arrays,
- les arrays fixes.
Various - To add an element at the end of a one-dimensional array, use ArrayAdd or Adds.
- To add an element into a sorted array (while respecting the sort), use ArrayAddSorted.
This page is also available for…
|
|
|
| |
| Click [Add] to post a comment |
|
| |
|
| |
| |
| |
| |
| |
| |
| | |
| |