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