Remove substring

Subtracts one or more substrings from a base text, i.e. ["Hello world","World"] would yield "Hello".

Transformer Concurrent Distributed execution possible
  • Base text column

    Column containing the text to subtract from

    InputColumn<String> Required
  • Case sensitive

    Should substring matching be case-sensitive or not?

    boolean Required
  • Match whole words only

    If set, only whole words (surrounded by whitespace or punctuation) will be removed.

    This prevents removing partial words.

    boolean Optional
  • Substring columns

    Columns containing the substrings to remove from the base text

    List of InputColumn<Object> Required