Contact Us 1-800-596-4880

find

DataWeave 2.2 is compatible and bundled with Mule 4.2. This version of Mule reached its End of Life on May 2, 2023, when Extended Support ended.

Deployments of new applications to CloudHub that use this version of Mule are no longer allowed. Only in-place updates to applications are permitted.

MuleSoft recommends that you upgrade to the latest version of Mule 4 that is in Standard Support so that your applications run with the latest fixes and security enhancements.

find(Array<T>, Any): Array<Number>

Returns indices of an input that match a specified value.

This version of the function returns indices of an array. Others return indices of a string.

Parameters

Name Description

elements

An array with elements of any type.

elementToFind

Value to find in the input array.

Example

This example finds the index of an element in a string array.

Source

%dw 2.0
output application/json
---
["Bond", "James", "Bond"] find "Bond"

Output

[0,2]

find(String, Regex): Array<Array<Number>>

Returns the indices in the text that match the specified regular expression (regex), followed by the capture groups.

The first element in each resulting sub-array is the index in the text that matches the regex, and the next ones are the capture groups in the regex (if present).

Note: To retrieve parts of the text that match a regex. use the scan function.

Parameters

Name Description

text

A string.

matcher

A Java regular expression for matching characters in the text.

Example

This example finds the beginning and ending indices of words that contain ea

Source

%dw 2.0
output application/json
---
"I heart DataWeave" find /\w*ea\w*(\b)/

Output

[ [2,7], [8,17] ]

find(String, String): Array<Number>

Lists indices where the specified characters of a string are present.

Parameters

Name Description

text

A source string.

textToFind

The string to find in the source string.

Example

This example lists the indices of "a" found in "aabccdbce".

Source

%dw 2.0
output application/json
---
"aabccdbce" find "a"

Output

[0,1]