Informatica Data Quality
- Informatica Data Quality 10.5.4
- All Products
array[ index ]
array[ start_index , end_index ]
map[ key ]
Argument
| Description
|
---|---|
array
| Array. The array from which you want to access one or more elements.
You can enter any valid transformation expression that evaluates to an array.
|
index
| Integer. The position of the element that you want to access. For example, an index of 0 indicates the first element in an array.
|
start_index
| Integer. The starting index in a range of elements that you want to access. The subscript operator includes the element that the starting index represents.
|
end_index
| Integer. The ending index in a range of elements that you want to access. The subscript operator excludes the element that the ending index represents.
|
map
| Map. The map from which you want to retrieve the value corresponding to a key.
|
key
| Data type of the key. The key element for which you want to retrieve the value.
You can enter any valid transformation expression that evaluates to a key value of the map data.
|
drinks = [‘milk’, ‘coffee’, ‘tea’, ‘chai’]
|
|
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
country_currency = [‘England’ -> ‘Pound’, ‘France’ -> ‘Euro’, ‘Japan’ -> ‘Yen’>, ‘USA’ -> ‘Dollar’]
|
|
---|---|
|
|
|
|
|
|