Supported in: Batch, Streaming
Extract all instances of a regex match into an array.
Expression categories: Regex, String
Output type: Array<String>
Description: Extract the first two initials from each code. Argument values:
Output: [ MT, XB ]
Description: Extract all match groups, this includes first two initials and the dash. Argument values:
Output: [ MT-, XB- ]
Description: Extract the second match group if present. Argument values:
Output: [ o, empty string, empty string ]
Description: Extract the second match group if present. Argument values:
Output: [ o, empty string, empty string ]
Description: Extract the pattern with no match group defined. Argument values:
Output: [ code[ ]
Description: Extract the second match group. Argument values:
Output: [ o, app ]
Description: Null inputs give null outputs. Argument values:
Output: null