Text Tagger Regex component

This transformation component uses a regex (regular expression) to match text in a specified text field on the incoming records and then tags the output records with a property containing the text.

Besides specifying a regex search pattern, you must also specify a render pattern for the output text.

When added to a graph, the component icon looks like this:

Metadata schema

The metadata schema for the Text Tagger Regex component is not fixed.

Configuration properties

The configuration for the Text Tagger Regex component is set via the Integrator Edit component:

Configuration Property Value
Source Field Name The name of the text field (in the input records) in which the regex will search for matches.
Target Field Name The name of the field (in the output records) into which the matched output is written.
Overwrite Target Field
  • If true, the content of the target field will be overwritten by the matched output.
  • If false (the default), the matched output will be appended to the existing content of the target field, with the new content separated from the previous content by the multi-assign delimiter.
Search Pattern The regex pattern to use when searching for matched text in the source field.
Render Pattern The regex pattern to use when rendering (writing) the matched output in the target (output) field.
Multi-assign delimiter The character that separates multiple matched values in the target field. The default is the Unicode DELETE character (\U007F).