%dw 2.0
output application/json
---
["Bond", "James", "Bond"] find "Bond"
find
find<T>(@StreamCapable() elements: Array<T>, elementToFind: Any): Array<Number>
find(@StreamCapable() text: String, matcher: 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.