Index Selector ([])

Index Selector ([anIndex])

The index selector returns the element at the specified position. It can be applied over an array, object, or string.

Now that we understand how to traverse Objects with the single-value selector, let’s see how to traverse Arrays with the index selector ([n]). Use the index selector to get to a value in an Array based on its position from the beginning of the Array:


Input:

[“prod”, “qa”, “dev”]

DW Script:

%dw 2.0

output json

payload[1]

Output:

“qa”


Notice that by using 1 as the index, the script returns the second item in the Array. This is because Arrays in DataWeave are zero-indexed; the item in the first position of the Array has an index of 0, the second has an index of 1, and so on.

Just like Objects can be nested, so can Arrays, and you can retrieve nested Array items in the same way you do with the single-value selector, by stringing together index selectors.

There’s another important feature that should be noted. If you use positive numbers for the index, DataWeave will start selecting from the beginning of the Array, but if you use a negative number for the index, DataWeave will start selecting from the end of the Array. Since 0 is already reserved as the first element in the Array, and there is no such thing as -0, DataWeave starts indexing the last item of the Array from -1.

Index Selector Over an Array

This selector can be applied to String literals, Arrays and Objects. In the case of Objects, the value of the key-value pair found at the index is returned. In the case of Arrays, the value of the element is returned. The index is zero-based.

  1. If the index is bigger or equal to 0, it starts counting from the beginning.

2. If the index is negative, it starts counting from the end where -1 is the last element.

DataWeave Script:

%dw 2.0

output application/json

payload.people[1]

Input JSON Payload:

{

“people”: [

{

“nameFirst”: “Nial”,

“nameLast”: “Martinez”

},

{

“nameFirst”: “Coty”,

“nameLast”: “Belgrano”

}

]

}

Output JSON:

{

“nameFirst”: “Coty”,

“nameLast”: “Belgrano”

}

Index Selector Over an Object

The selector returns the value of the key-value pair at the specified position.

DataWeave Script:

%dw 2.0

output application/json

payload[1]

Input JSON Payload:

{

“nameFirst”: “Mark”,

“nameLast”: “Nguyen”

}

Output JSON:

“Nguyen”

Index Selector Over a String

When using the Index Selector with a string, the string is broken down into an array, where each character is an index.

DataWeave Script:

%dw 2.0

output application/json

{ name: “MuleSoft”[0] }

Output JSON:

{ “name”: “M” }

The selector picks the character at a given position, treating the string as an array of characters.

  1. If the index is bigger or equal to 0, it starts counting from the beginning.
  2. If the index is negative, it starts counting from the end.

DataWeave Script:

%dw 2.0

output application/json

{ name: “Emiliano”[0] }

Output JSON:

{ “name”: “E” }

Follow Me

If you like my post please follow me to read my latest post on programming and technology.

Instagram

Facebook

Recent Posts

Square Root of Integer

Given an integer A. Compute and return the square root of A. If A is…

1 year ago

Build Array From Permutation

Given a zero-based permutation nums (0-indexed), build an array ans of the same length where…

1 year ago

DSA: Heap

A heap is a specialized tree-based data structure that satisfies the heap property. It is…

1 year ago

DSA: Trie

What is a Trie in DSA? A trie, often known as a prefix tree, is…

1 year ago

Trees: Lowest Common Ancestor

What is the Lowest Common Ancestor? In a tree, the lowest common ancestor (LCA) of…

1 year ago

Binary Search Tree (BST)

A Binary Search Tree (BST) is a type of binary tree that satisfies the following…

1 year ago