Array
Array to String Delimiter (ConvertArraytoStringwithDelimiter)
This task converts an array to a delimited string. The Target string will never be a null value. If no delimited data is available (for example, the Array parameter is null or empty), then an empty Target results.
Parameter | Type | Description |
---|---|---|
Array | Array | The array to convert. |
Delimiter | String | The character to use for separating the values. |
Quote Wrapping String | String | The character to wrap each value in the specified string. |
Target | String | Output. |
Array - Create (CreateArray)
This task creates a new array for use throughout a Business Process.
Parameter | Type | Description |
---|---|---|
Result | Array | Output. |
Size | Long | The size of the array to be created. |
Iterator Variable (Sets Zero) | Long | Initializes (sets to zero) a counter/index for an array position variable. |
Array - Get Element (GetArrayElement)
This task retrieves the value of an indexed element in an array.
Parameter | Type | Description |
---|---|---|
Array | Array | The array to get the item from. |
Position | Long | The position of the item in the array. |
Result | Object | Output. |
Array - Get Element & Increment Position (GetArrayElementAndIncrementPosition)
This task retrieves the value of an indexed element in an array and increments the position.
Parameter | Type | Description |
---|---|---|
Array | Array | The array to get the item from. |
Position | Long | The position of the item in the array. |
Result | Object | Output. |
Array - Get Size (GetArraySize)
This task retrieves the number of elements in an array.
Parameter | Type | Description |
---|---|---|
Array | Array | The array whose size is to be computed. |
Result | Long | Output |
Iterator Variable (sets zero) | Long | Initialize a counter/index for an array position variable to zero. |
SetArrayElement
This task sets the value of an indexed element in an array.
Parameter | Type | Description |
---|---|---|
Array | Array | The array to set the element in. |
Position | Long | The position in the array to be set. |
Value | Object | The value to set it to. |
SetArrayElementAndIncrementPosition
This task sets the value of an indexed element in an array and increments the position.
Parameter | Type | Description |
---|---|---|
Array | Array | The array to set the element in. |
Position | Long | The position in the array to be set. |
Value | Object | The value to set it to. |